Whamcloud - gitweb
Many files:
[tools/e2fsprogs.git] / lib / ext2fs / bitops.c
1 /*
2  * bitops.c --- Bitmap frobbing code.  See bitops.h for the inlined
3  *      routines.
4  * 
5  * Copyright (C) 1993, 1994, 1995, 1996 Theodore Ts'o.
6  *
7  * %Begin-Header%
8  * This file may be redistributed under the terms of the GNU Public
9  * License.
10  * %End-Header%
11  */
12
13 #include <stdio.h>
14 #if HAVE_SYS_TYPES_H
15 #include <sys/types.h>
16 #endif
17
18 #include <linux/ext2_fs.h>
19
20 #include "ext2fs.h"
21
22 #ifndef _EXT2_HAVE_ASM_BITOPS_
23
24 /*
25  * For the benefit of those who are trying to port Linux to another
26  * architecture, here are some C-language equivalents.  You should
27  * recode these in the native assmebly language, if at all possible.
28  *
29  * C language equivalents written by Theodore Ts'o, 9/26/92.
30  * Modified by Pete A. Zaitcev 7/14/95 to be portable to big endian
31  * systems, as well as non-32 bit systems.
32  */
33
34 int ext2fs_set_bit(int nr,void * addr)
35 {
36         int             mask, retval;
37         unsigned char   *ADDR = (unsigned char *) addr;
38
39         ADDR += nr >> 3;
40         mask = 1 << (nr & 0x07);
41         retval = (mask & *ADDR) != 0;
42         *ADDR |= mask;
43         return retval;
44 }
45
46 int ext2fs_clear_bit(int nr, void * addr)
47 {
48         int             mask, retval;
49         unsigned char   *ADDR = (unsigned char *) addr;
50
51         ADDR += nr >> 3;
52         mask = 1 << (nr & 0x07);
53         retval = (mask & *ADDR) != 0;
54         *ADDR &= ~mask;
55         return retval;
56 }
57
58 int ext2fs_test_bit(int nr, const void * addr)
59 {
60         int                     mask;
61         const unsigned char     *ADDR = (const unsigned char *) addr;
62
63         ADDR += nr >> 3;
64         mask = 1 << (nr & 0x07);
65         return ((mask & *ADDR) != 0);
66 }
67
68 #endif  /* !_EXT2_HAVE_ASM_BITOPS_ */
69
70 void ext2fs_warn_bitmap(errcode_t errcode, unsigned long arg,
71                         const char *description)
72 {
73 #ifndef OMIT_COM_ERR
74         if (description)
75                 com_err(0, errcode, "#%u for %s", arg, description);
76         else
77                 com_err(0, errcode, "#%u", arg);
78 #endif
79 }
80
81 void ext2fs_warn_bitmap2(ext2fs_generic_bitmap bitmap,
82                             int code, unsigned long arg)
83 {
84 #ifndef OMIT_COM_ERR
85         if (bitmap->description)
86                 com_err(0, bitmap->base_error_code+code,
87                         "#%u for %s", arg, bitmap->description);
88         else
89                 com_err(0, bitmap->base_error_code + code, "#%u", arg);
90 #endif
91 }
92