aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorJiri Slaby <jirislaby@gmail.com>2007-10-19 02:40:31 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-19 14:53:42 -0400
commitd05be13bcc6ec615fb2e9556a9b85d52800669b6 (patch)
treee75cee7b28e2a22d94f29fdd44746ea14f4fc6b8 /include/linux
parent5159f40742508e03aed4273a9b3ef06f4e71929f (diff)
define first set of BIT* macros
define first set of BIT* macros - move BITOP_MASK and BITOP_WORD from asm-generic/bitops/atomic.h to include/linux/bitops.h and rename it to BIT_MASK and BIT_WORD - move BITS_TO_LONGS and BITS_PER_BYTE to bitops.h too and allow easily define another BITS_TO_something (e.g. in event.c) by BITS_TO_TYPE macro Remaining (and common) BIT macro will be defined after all occurences and conflicts will be sorted out in the patches. Signed-off-by: Jiri Slaby <jirislaby@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/bitops.h8
-rw-r--r--include/linux/types.h3
2 files changed, 8 insertions, 3 deletions
diff --git a/include/linux/bitops.h b/include/linux/bitops.h
index b9fb8ee3308b..939e80bdbef7 100644
--- a/include/linux/bitops.h
+++ b/include/linux/bitops.h
@@ -2,6 +2,14 @@
2#define _LINUX_BITOPS_H 2#define _LINUX_BITOPS_H
3#include <asm/types.h> 3#include <asm/types.h>
4 4
5#ifdef __KERNEL__
6#define BIT_MASK(nr) (1UL << ((nr) % BITS_PER_LONG))
7#define BIT_WORD(nr) ((nr) / BITS_PER_LONG)
8#define BITS_TO_TYPE(nr, t) (((nr)+(t)-1)/(t))
9#define BITS_TO_LONGS(nr) BITS_TO_TYPE(nr, BITS_PER_LONG)
10#define BITS_PER_BYTE 8
11#endif
12
5/* 13/*
6 * Include this here because some architectures need generic_ffs/fls in 14 * Include this here because some architectures need generic_ffs/fls in
7 * scope 15 * scope
diff --git a/include/linux/types.h b/include/linux/types.h
index 0351bf2fac85..4f0dad21c917 100644
--- a/include/linux/types.h
+++ b/include/linux/types.h
@@ -3,12 +3,9 @@
3 3
4#ifdef __KERNEL__ 4#ifdef __KERNEL__
5 5
6#define BITS_TO_LONGS(bits) \
7 (((bits)+BITS_PER_LONG-1)/BITS_PER_LONG)
8#define DECLARE_BITMAP(name,bits) \ 6#define DECLARE_BITMAP(name,bits) \
9 unsigned long name[BITS_TO_LONGS(bits)] 7 unsigned long name[BITS_TO_LONGS(bits)]
10 8
11#define BITS_PER_BYTE 8
12#endif 9#endif
13 10
14#include <linux/posix_types.h> 11#include <linux/posix_types.h>