X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lnet%2Fselftest%2Ftimer.c;h=de20840acfa4e5d111d5c813ca1cde6aca8a27c4;hp=c71fc0f3de73767f1e78132b34fc9389e0955f53;hb=937656dca50d4b0ba8501fbea0a450c663cdabcc;hpb=a5b81807c5d6d2cb3b2ef1a0a7e150ee6002f7f7 diff --git a/lnet/selftest/timer.c b/lnet/selftest/timer.c index c71fc0f..de20840a 100644 --- a/lnet/selftest/timer.c +++ b/lnet/selftest/timer.c @@ -1,6 +1,4 @@ -/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*- - * vim:expandtab:shiftwidth=8:tabstop=8: - * +/* * GPL HEADER START * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -28,6 +26,8 @@ /* * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. * Use is subject to license terms. + * + * Copyright (c) 2011, 2013, Intel Corporation. */ /* * This file is part of Lustre, http://www.lustre.org/ @@ -44,56 +44,52 @@ /* - * Timers are implemented as a sorted queue of expiry times. The queue - * is slotted, with each slot holding timers which expire in a - * 2**STTIMER_MINPOLL (8) second period. The timers in each slot are + * Timers are implemented as a sorted queue of expiry times. The queue + * is slotted, with each slot holding timers which expire in a + * 2**STTIMER_MINPOLL (8) second period. The timers in each slot are * sorted by increasing expiry time. The number of slots is 2**7 (128), * to cover a time period of 1024 seconds into the future before wrapping. */ -#define STTIMER_MINPOLL 3 /* log2 min poll interval (8 s) */ -#define STTIMER_SLOTTIME (1 << STTIMER_MINPOLL) -#define STTIMER_SLOTTIMEMASK (~(STTIMER_SLOTTIME - 1)) -#define STTIMER_NSLOTS (1 << 7) -#define STTIMER_SLOT(t) (&stt_data.stt_hash[(((t) >> STTIMER_MINPOLL) & \ +#define STTIMER_MINPOLL 3 /* log2 min poll interval (8 s) */ +#define STTIMER_SLOTTIME (1 << STTIMER_MINPOLL) +#define STTIMER_SLOTTIMEMASK (~(STTIMER_SLOTTIME - 1)) +#define STTIMER_NSLOTS (1 << 7) +#define STTIMER_SLOT(t) (&stt_data.stt_hash[(((t) >> STTIMER_MINPOLL) & \ (STTIMER_NSLOTS - 1))]) -struct st_timer_data { - cfs_spinlock_t stt_lock; - /* start time of the slot processed previously */ - cfs_time_t stt_prev_slot; - cfs_list_t stt_hash[STTIMER_NSLOTS]; - int stt_shuttingdown; -#ifdef __KERNEL__ - cfs_waitq_t stt_waitq; - int stt_nthreads; -#endif +static struct st_timer_data { + spinlock_t stt_lock; + /* start time of the slot processed previously */ + cfs_time_t stt_prev_slot; + struct list_head stt_hash[STTIMER_NSLOTS]; + int stt_shuttingdown; + wait_queue_head_t stt_waitq; + int stt_nthreads; } stt_data; void -stt_add_timer (stt_timer_t *timer) +stt_add_timer(stt_timer_t *timer) { - cfs_list_t *pos; + struct list_head *pos; - cfs_spin_lock(&stt_data.stt_lock); + spin_lock(&stt_data.stt_lock); -#ifdef __KERNEL__ - LASSERT (stt_data.stt_nthreads > 0); -#endif - LASSERT (!stt_data.stt_shuttingdown); - LASSERT (timer->stt_func != NULL); - LASSERT (cfs_list_empty(&timer->stt_list)); - LASSERT (cfs_time_after(timer->stt_expires, cfs_time_current_sec())); + LASSERT(stt_data.stt_nthreads > 0); + LASSERT(!stt_data.stt_shuttingdown); + LASSERT(timer->stt_func != NULL); + LASSERT(list_empty(&timer->stt_list)); + LASSERT(cfs_time_after(timer->stt_expires, cfs_time_current_sec())); - /* a simple insertion sort */ - cfs_list_for_each_prev (pos, STTIMER_SLOT(timer->stt_expires)) { - stt_timer_t *old = cfs_list_entry(pos, stt_timer_t, stt_list); + /* a simple insertion sort */ + list_for_each_prev(pos, STTIMER_SLOT(timer->stt_expires)) { + stt_timer_t *old = list_entry(pos, stt_timer_t, stt_list); - if (cfs_time_aftereq(timer->stt_expires, old->stt_expires)) - break; - } - cfs_list_add(&timer->stt_list, pos); + if (cfs_time_aftereq(timer->stt_expires, old->stt_expires)) + break; + } + list_add(&timer->stt_list, pos); - cfs_spin_unlock(&stt_data.stt_lock); + spin_unlock(&stt_data.stt_lock); } /* @@ -106,52 +102,50 @@ stt_add_timer (stt_timer_t *timer) * another CPU. */ int -stt_del_timer (stt_timer_t *timer) +stt_del_timer(stt_timer_t *timer) { - int ret = 0; + int ret = 0; - cfs_spin_lock(&stt_data.stt_lock); + spin_lock(&stt_data.stt_lock); -#ifdef __KERNEL__ - LASSERT (stt_data.stt_nthreads > 0); -#endif - LASSERT (!stt_data.stt_shuttingdown); + LASSERT(stt_data.stt_nthreads > 0); + LASSERT(!stt_data.stt_shuttingdown); - if (!cfs_list_empty(&timer->stt_list)) { - ret = 1; - cfs_list_del_init(&timer->stt_list); - } + if (!list_empty(&timer->stt_list)) { + ret = 1; + list_del_init(&timer->stt_list); + } - cfs_spin_unlock(&stt_data.stt_lock); - return ret; + spin_unlock(&stt_data.stt_lock); + return ret; } /* called with stt_data.stt_lock held */ -int -stt_expire_list (cfs_list_t *slot, cfs_time_t now) +static int +stt_expire_list(struct list_head *slot, cfs_time_t now) { - int expired = 0; - stt_timer_t *timer; + int expired = 0; + stt_timer_t *timer; + + while (!list_empty(slot)) { + timer = list_entry(slot->next, stt_timer_t, stt_list); - while (!cfs_list_empty(slot)) { - timer = cfs_list_entry(slot->next, stt_timer_t, stt_list); + if (cfs_time_after(timer->stt_expires, now)) + break; - if (cfs_time_after(timer->stt_expires, now)) - break; + list_del_init(&timer->stt_list); + spin_unlock(&stt_data.stt_lock); - cfs_list_del_init(&timer->stt_list); - cfs_spin_unlock(&stt_data.stt_lock); + expired++; + (*timer->stt_func) (timer->stt_data); - expired++; - (*timer->stt_func) (timer->stt_data); - - cfs_spin_lock(&stt_data.stt_lock); - } + spin_lock(&stt_data.stt_lock); + } - return expired; + return expired; } -int +static int stt_check_timers (cfs_time_t *last) { int expired = 0; @@ -161,78 +155,57 @@ stt_check_timers (cfs_time_t *last) now = cfs_time_current_sec(); this_slot = now & STTIMER_SLOTTIMEMASK; - cfs_spin_lock(&stt_data.stt_lock); + spin_lock(&stt_data.stt_lock); - while (cfs_time_aftereq(this_slot, *last)) { - expired += stt_expire_list(STTIMER_SLOT(this_slot), now); - this_slot = cfs_time_sub(this_slot, STTIMER_SLOTTIME); - } + while (cfs_time_aftereq(this_slot, *last)) { + expired += stt_expire_list(STTIMER_SLOT(this_slot), now); + this_slot = cfs_time_sub(this_slot, STTIMER_SLOTTIME); + } - *last = now & STTIMER_SLOTTIMEMASK; - cfs_spin_unlock(&stt_data.stt_lock); - return expired; + *last = now & STTIMER_SLOTTIMEMASK; + spin_unlock(&stt_data.stt_lock); + return expired; } -#ifdef __KERNEL__ -int +static int stt_timer_main (void *arg) { int rc = 0; - UNUSED(arg); - - SET_BUT_UNUSED(rc); - cfs_daemonize("st_timer"); cfs_block_allsigs(); - while (!stt_data.stt_shuttingdown) { - stt_check_timers(&stt_data.stt_prev_slot); + while (!stt_data.stt_shuttingdown) { + stt_check_timers(&stt_data.stt_prev_slot); - cfs_waitq_wait_event_timeout(stt_data.stt_waitq, - stt_data.stt_shuttingdown, - cfs_time_seconds(STTIMER_SLOTTIME), - rc); - } + rc = wait_event_timeout(stt_data.stt_waitq, + stt_data.stt_shuttingdown, + cfs_time_seconds(STTIMER_SLOTTIME)); + } - cfs_spin_lock(&stt_data.stt_lock); - stt_data.stt_nthreads--; - cfs_spin_unlock(&stt_data.stt_lock); - return 0; + spin_lock(&stt_data.stt_lock); + stt_data.stt_nthreads--; + spin_unlock(&stt_data.stt_lock); + return rc; } -int +static int stt_start_timer_thread (void) { - long pid; - - LASSERT (!stt_data.stt_shuttingdown); + struct task_struct *task; - pid = cfs_create_thread(stt_timer_main, NULL, 0); - if (pid < 0) - return (int)pid; + LASSERT(!stt_data.stt_shuttingdown); - cfs_spin_lock(&stt_data.stt_lock); - stt_data.stt_nthreads++; - cfs_spin_unlock(&stt_data.stt_lock); - return 0; -} - -#else /* !__KERNEL__ */ - -int -stt_check_events (void) -{ - return stt_check_timers(&stt_data.stt_prev_slot); -} + task = kthread_run(stt_timer_main, NULL, "st_timer"); + if (IS_ERR(task)) + return PTR_ERR(task); -int -stt_poll_interval (void) -{ - return STTIMER_SLOTTIME; + spin_lock(&stt_data.stt_lock); + stt_data.stt_nthreads++; + spin_unlock(&stt_data.stt_lock); + return 0; } -#endif int stt_startup (void) @@ -243,40 +216,35 @@ stt_startup (void) stt_data.stt_shuttingdown = 0; stt_data.stt_prev_slot = cfs_time_current_sec() & STTIMER_SLOTTIMEMASK; - cfs_spin_lock_init(&stt_data.stt_lock); + spin_lock_init(&stt_data.stt_lock); for (i = 0; i < STTIMER_NSLOTS; i++) - CFS_INIT_LIST_HEAD(&stt_data.stt_hash[i]); + INIT_LIST_HEAD(&stt_data.stt_hash[i]); -#ifdef __KERNEL__ - stt_data.stt_nthreads = 0; - cfs_waitq_init(&stt_data.stt_waitq); - rc = stt_start_timer_thread(); - if (rc != 0) - CERROR ("Can't spawn timer thread: %d\n", rc); -#endif + stt_data.stt_nthreads = 0; + init_waitqueue_head(&stt_data.stt_waitq); + rc = stt_start_timer_thread(); + if (rc != 0) + CERROR ("Can't spawn timer thread: %d\n", rc); return rc; } void -stt_shutdown (void) +stt_shutdown(void) { - int i; + int i; - cfs_spin_lock(&stt_data.stt_lock); + spin_lock(&stt_data.stt_lock); - for (i = 0; i < STTIMER_NSLOTS; i++) - LASSERT (cfs_list_empty(&stt_data.stt_hash[i])); + for (i = 0; i < STTIMER_NSLOTS; i++) + LASSERT(list_empty(&stt_data.stt_hash[i])); - stt_data.stt_shuttingdown = 1; + stt_data.stt_shuttingdown = 1; -#ifdef __KERNEL__ - cfs_waitq_signal(&stt_data.stt_waitq); - lst_wait_until(stt_data.stt_nthreads == 0, stt_data.stt_lock, - "waiting for %d threads to terminate\n", - stt_data.stt_nthreads); -#endif + wake_up(&stt_data.stt_waitq); + lst_wait_until(stt_data.stt_nthreads == 0, stt_data.stt_lock, + "waiting for %d threads to terminate\n", + stt_data.stt_nthreads); - cfs_spin_unlock(&stt_data.stt_lock); - return; + spin_unlock(&stt_data.stt_lock); }