Whamcloud - gitweb
Fixed packing in obdcontrol
[fs/lustre-release.git] / lustre / include / linux / obd_support.h
1
2 #ifndef _OBD_SUPPORT
3 #define _OBD_SUPPORT
4 #include <linux/malloc.h>
5 #include <linux/vmalloc.h>
6
7 #define EXT2_OBD_DEBUG
8
9
10 #define MIN(a,b) (((a)<(b)) ? (a): (b))
11 #define MAX(a,b) (((a)>(b)) ? (a): (b))
12
13 /*
14  * Debug code
15  */
16 /* global variables */
17 extern int obd_debug_level;
18 extern int obd_print_entry;
19
20 /* debugging masks */
21 #define D_PSDEV       1 /* debug information from psdev.c */
22 #define D_INODE       2
23 #define D_SUPER       4
24 #define D_SNAP        8
25 #define D_UNUSED4    16
26 #define D_WARNING    32 /* misc warnings */
27 #define D_EXT2       64 /* anything from ext2_debug */
28 #define D_MALLOC    128 /* print malloc, free information */
29 #define D_CACHE     256 /* cache-related items */
30 #define D_INFO      512 /* general information, especially from interface.c */
31 #define D_IOCTL    1024 /* ioctl related information */
32 #define D_BLOCKS   2048 /* ext2 block allocation */
33 #define D_RPC      4096 /* ext2 block allocation */
34  
35 #ifdef EXT2_OBD_DEBUG
36 #define CDEBUG(mask, format, a...)                                      \
37         do {                                                            \
38         if (obd_debug_level & mask) {                                   \
39                 printk("(%s,l. %d): ",  __FUNCTION__, __LINE__);        \
40                 printk(format, ## a); }                                 \
41         } while (0)
42
43 #define ENTRY                                                                 \
44         if (obd_print_entry)                                                  \
45                 printk("Process %d entered %s\n", current->pid, __FUNCTION__)
46
47 #define EXIT                                                                  \
48         if (obd_print_entry)                                                  \
49                 printk("Process %d leaving %s [%d]\n", current->pid, __FUNCTION__, __LINE__)
50
51 #else /* EXT2_OBD_DEBUG */
52
53 #       define CDEBUG ;
54 #       define ENTRY ;
55 #       define EXIT ;
56
57 #endif /* EXT2_OBD_DEBUG */
58
59
60 #define CMD(cmd) (( cmd == READ ) ? "read" : "write")
61
62 #define IDEBUG(inode) { \
63                 printk("]]%s line %d[[  ino %ld, blocks %ld, size %Ld, atm %ld, ctim %ld, mtm %ld, mode %o, uid %d, gid %d\n", \
64                        __FUNCTION__ , __LINE__, \
65                        inode->i_ino, inode->i_blocks, inode->i_size,\
66                        inode->i_atime, inode->i_ctime, inode->i_mtime,\
67                        inode->i_mode, inode->i_uid, inode->i_gid);\
68                 printk("blk: %d %d %d %d %d %d %d %d %d %d\n",\
69                        inode->u.ext2_i.i_data[0], inode->u.ext2_i.i_data[1],\
70                        inode->u.ext2_i.i_data[2], inode->u.ext2_i.i_data[3],\
71                        inode->u.ext2_i.i_data[4], inode->u.ext2_i.i_data[5],\
72                        inode->u.ext2_i.i_data[6], inode->u.ext2_i.i_data[7],\
73                        inode->u.ext2_i.i_data[8], inode->u.ext2_i.i_data[9]);\
74         }
75
76 #define ODEBUG(obdo) { \
77                 printk("]]%s line %d[[  id %Ld, atm %Ld, mtim %Ld, ctm %Ld, size %Ld, blocks %Ld\n",\
78                        __FUNCTION__ , __LINE__, \
79                        obdo->o_ino, obdo->o_atime, obdo->o_mtime,\
80                        obdo->o_ctime, obdo->o_size, obdo->o_blocks);\
81                 printk("]]%s line %d[[  mode %o, uid %d, gid %d, flg %0x, obdflg %0x, nlnk %d, valid %0x\n", \
82                        __FUNCTION__ , __LINE__, \
83                        obdo->o_mode, obdo->o_uid, obdo->o_gid,\
84                        obdo->o_flags, obdo->o_obdflags, obdo->o_nlink,\
85                        obdo->o_valid);\
86                 printk("blk: %d %d %d %d %d %d %d %d %d %d\n",\
87                        ((long)obdo->o_inline)[0], ((long)obdo->o_inline)[1],\
88                        ((long)obdo->o_inline)[2], ((long)obdo->o_inline)[3],\
89                        ((long)obdo->o_inline)[4], ((long)obdo->o_inline)[5],\
90                        ((long)obdo->o_inline)[6], ((long)obdo->o_inline)[7],\
91                        ((long)obdo->o_inline)[8], ((long)obdo->o_inline)[9]);\
92         }
93
94
95 #define PDEBUG(page,cmd)        {if (page){\
96                 char *uptodate = (Page_Uptodate(page)) ? "yes" : "no";\
97                 char *locked = (PageLocked(page)) ? "yes" : "no";\
98                 int count = page->count.counter;\
99                 long index = page->index;\
100                 \
101                 CDEBUG(D_IOCTL, " ** %s, cmd: %s, off %ld, uptodate: %s, "\
102                        "locked: %s, cnt %d page %p pages %ld** \n", __FUNCTION__,\
103                        cmd, index, uptodate, locked, count, page, (!page->mapping) ? -1 : page->mapping->nrpages);\
104         } else { CDEBUG(D_IOCTL, "** %s, no page\n", __FUNCTION__); }}
105
106
107 #define OBD_ALLOC(ptr, cast, size)                                      \
108 do {                                                                    \
109         if (size <= 4096) {                                             \
110                 ptr = (cast)kmalloc((unsigned long) size, GFP_KERNEL); \
111                 CDEBUG(D_MALLOC, "kmalloced: %x at %x.\n",              \
112                        (int) size, (int) ptr);                          \
113         } else {                                                        \
114                 ptr = (cast)vmalloc((unsigned long) size);              \
115                 CDEBUG(D_MALLOC, "vmalloced: %x at %x.\n",              \
116                        (int) size, (int) ptr);                          \
117         }                                                               \
118         if (ptr == 0) {                                                 \
119                 printk("kernel malloc returns 0 at %s:%d\n",            \
120                        __FILE__, __LINE__);                             \
121         }                                                               \
122         memset(ptr, 0, size);                                           \
123 } while (0)
124
125 #define OBD_FREE(ptr,size)                              \
126 do {                                                    \
127         if (size <= 4096) {                             \
128                 kfree_s((ptr), (size));                 \
129                 CDEBUG(D_MALLOC, "kfreed: %x at %x.\n", \
130                        (int) size, (int) ptr);          \
131         } else {                                        \
132                 vfree((ptr));                           \
133                 CDEBUG(D_MALLOC, "vfreed: %x at %x.\n", \
134                        (int) size, (int) ptr);          \
135         }                                               \
136 } while (0)
137
138
139 static inline struct page *addr_to_page(char *buf)
140 {
141         unsigned long addr = (unsigned long)buf;
142         unsigned long map_nr;
143
144 #ifdef CONFIG_DISCONTIGMEM
145         if (addr == 0) return;
146 #endif
147         map_nr = MAP_NR(addr);
148         if (map_nr < max_mapnr)
149                 return mem_map + map_nr;
150         else 
151                 return 0;
152 }
153
154
155
156 #endif