Searched hist:"930 ae745f50088279fdc06057a429f16495b53a2" (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/include/asm-generic/bitops/ |
H A D | le.h | 930ae745f50088279fdc06057a429f16495b53a2 Sun Mar 26 03:39:15 CST 2006 Akinobu Mita <mita@miraclelinux.com> [PATCH] bitops: generic ext2_{set,clear,test,find_first_zero,find_next_zero}_bit()
This patch introduces the C-language equivalents of the functions below:
int ext2_set_bit(int nr, volatile unsigned long *addr); int ext2_clear_bit(int nr, volatile unsigned long *addr); int ext2_test_bit(int nr, const volatile unsigned long *addr); unsigned long ext2_find_first_zero_bit(const unsigned long *addr, unsigned long size); unsinged long ext2_find_next_zero_bit(const unsigned long *addr, unsigned long size);
In include/asm-generic/bitops/ext2-non-atomic.h
This code largely copied from:
include/asm-powerpc/bitops.h include/asm-parisc/bitops.h
Signed-off-by: Akinobu Mita <mita@miraclelinux.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
|