Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[S390] __FD_foo definitions.

Make the definitions of __FD_SET, __FD_CLR and __FD_ISSET independent
from asm/bitops.h and remove the macro magic that tests for __GLIBC__.
Use simple C inline functions instead of set_bit, clear_bit and test_bit.

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>

authored by

Martin Schwidefsky and committed by
David Woodhouse
9348f0de d2731765

+25 -13
+25 -13
include/asm-s390/posix_types.h
··· 76 76 } __kernel_fsid_t; 77 77 78 78 79 - #if defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2) 79 + #ifdef __KERNEL__ 80 80 81 - #ifndef _S390_BITOPS_H 82 - #include <asm/bitops.h> 83 - #endif 81 + #undef __FD_SET 82 + static inline void __FD_SET(unsigned long fd, __kernel_fd_set *fdsetp) 83 + { 84 + unsigned long _tmp = fd / __NFDBITS; 85 + unsigned long _rem = fd % __NFDBITS; 86 + fdsetp->fds_bits[_tmp] |= (1UL<<_rem); 87 + } 84 88 85 - #undef __FD_SET 86 - #define __FD_SET(fd,fdsetp) set_bit((fd),(fdsetp)->fds_bits) 89 + #undef __FD_CLR 90 + static inline void __FD_CLR(unsigned long fd, __kernel_fd_set *fdsetp) 91 + { 92 + unsigned long _tmp = fd / __NFDBITS; 93 + unsigned long _rem = fd % __NFDBITS; 94 + fdsetp->fds_bits[_tmp] &= ~(1UL<<_rem); 95 + } 87 96 88 - #undef __FD_CLR 89 - #define __FD_CLR(fd,fdsetp) clear_bit((fd),(fdsetp)->fds_bits) 90 - 91 - #undef __FD_ISSET 92 - #define __FD_ISSET(fd,fdsetp) test_bit((fd),(fdsetp)->fds_bits) 97 + #undef __FD_ISSET 98 + static inline int __FD_ISSET(unsigned long fd, const __kernel_fd_set *fdsetp) 99 + { 100 + unsigned long _tmp = fd / __NFDBITS; 101 + unsigned long _rem = fd % __NFDBITS; 102 + return (fdsetp->fds_bits[_tmp] & (1UL<<_rem)) != 0; 103 + } 93 104 94 105 #undef __FD_ZERO 95 - #define __FD_ZERO(fdsetp) (memset ((fdsetp), 0, sizeof(*(fd_set *)(fdsetp)))) 106 + #define __FD_ZERO(fdsetp) \ 107 + ((void) memset ((__ptr_t) (fdsetp), 0, sizeof (__kernel_fd_set))) 96 108 97 - #endif /* defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2)*/ 109 + #endif /* __KERNEL__ */ 98 110 99 111 #endif