diff options
author | 2016-11-17 14:35:56 -0500 | |
---|---|---|
committer | 2016-11-18 08:47:32 +0100 | |
commit | 4c93630fa5f2ad2b88e3a6fdc6fd1f62bf5e6380 (patch) | |
tree | 3dd3bb4e0dab500cbd73d3f0a1a6f8afda8b7f4d | |
parent | staging: lustre: libcfs: remove use of __u* types (diff) | |
download | wireguard-linux-4c93630fa5f2ad2b88e3a6fdc6fd1f62bf5e6380.tar.xz wireguard-linux-4c93630fa5f2ad2b88e3a6fdc6fd1f62bf5e6380.zip |
staging: lustre: lnet: use BIT macro in LNet selftest
Some of the defines for lnet selftest can use the BIT
macros.
Signed-off-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/lustre/lnet/selftest/timer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/lustre/lnet/selftest/timer.c b/drivers/staging/lustre/lnet/selftest/timer.c index a4b723b23f51..2fe692df19d0 100644 --- a/drivers/staging/lustre/lnet/selftest/timer.c +++ b/drivers/staging/lustre/lnet/selftest/timer.c @@ -46,9 +46,9 @@ * 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_SLOTTIME BIT(STTIMER_MINPOLL) #define STTIMER_SLOTTIMEMASK (~(STTIMER_SLOTTIME - 1)) -#define STTIMER_NSLOTS (1 << 7) +#define STTIMER_NSLOTS BIT(7) #define STTIMER_SLOT(t) (&stt_data.stt_hash[(((t) >> STTIMER_MINPOLL) & \ (STTIMER_NSLOTS - 1))]) |