Merge master.kernel.org:/home/rmk/linux-2.6-serial
[pandora-kernel.git] / fs / xfs / linux-2.6 / xfs_linux.h
1 /*
2  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it would be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write the Free Software Foundation,
16  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18 #ifndef __XFS_LINUX__
19 #define __XFS_LINUX__
20
21 #include <linux/types.h>
22
23 /*
24  * Some types are conditional depending on the target system.
25  * XFS_BIG_BLKNOS needs block layer disk addresses to be 64 bits.
26  * XFS_BIG_INUMS needs the VFS inode number to be 64 bits, as well
27  * as requiring XFS_BIG_BLKNOS to be set.
28  */
29 #if defined(CONFIG_LBD) || (BITS_PER_LONG == 64)
30 # define XFS_BIG_BLKNOS 1
31 # if BITS_PER_LONG == 64
32 #  define XFS_BIG_INUMS 1
33 # else
34 #  define XFS_BIG_INUMS 0
35 # endif
36 #else
37 # define XFS_BIG_BLKNOS 0
38 # define XFS_BIG_INUMS  0
39 #endif
40
41 #include <xfs_types.h>
42 #include <xfs_arch.h>
43
44 #include <kmem.h>
45 #include <mrlock.h>
46 #include <spin.h>
47 #include <sv.h>
48 #include <mutex.h>
49 #include <sema.h>
50 #include <time.h>
51
52 #include <support/ktrace.h>
53 #include <support/debug.h>
54 #include <support/move.h>
55 #include <support/uuid.h>
56
57 #include <linux/mm.h>
58 #include <linux/kernel.h>
59 #include <linux/blkdev.h>
60 #include <linux/slab.h>
61 #include <linux/module.h>
62 #include <linux/file.h>
63 #include <linux/swap.h>
64 #include <linux/errno.h>
65 #include <linux/sched.h>
66 #include <linux/bitops.h>
67 #include <linux/major.h>
68 #include <linux/pagemap.h>
69 #include <linux/vfs.h>
70 #include <linux/seq_file.h>
71 #include <linux/init.h>
72 #include <linux/list.h>
73 #include <linux/proc_fs.h>
74 #include <linux/sort.h>
75 #include <linux/cpu.h>
76 #include <linux/notifier.h>
77 #include <linux/delay.h>
78
79 #include <asm/page.h>
80 #include <asm/div64.h>
81 #include <asm/param.h>
82 #include <asm/uaccess.h>
83 #include <asm/byteorder.h>
84 #include <asm/unaligned.h>
85
86 #include <xfs_behavior.h>
87 #include <xfs_vfs.h>
88 #include <xfs_cred.h>
89 #include <xfs_vnode.h>
90 #include <xfs_stats.h>
91 #include <xfs_sysctl.h>
92 #include <xfs_iops.h>
93 #include <xfs_aops.h>
94 #include <xfs_super.h>
95 #include <xfs_globals.h>
96 #include <xfs_fs_subr.h>
97 #include <xfs_lrw.h>
98 #include <xfs_buf.h>
99
100 /*
101  * Feature macros (disable/enable)
102  */
103 #undef  HAVE_REFCACHE   /* reference cache not needed for NFS in 2.6 */
104 #define HAVE_SENDFILE   /* sendfile(2) exists in 2.6, but not in 2.4 */
105 #define HAVE_SPLICE     /* a splice(2) exists in 2.6, but not in 2.4 */
106 #ifdef CONFIG_SMP
107 #define HAVE_PERCPU_SB  /* per cpu superblock counters are a 2.6 feature */
108 #else
109 #undef  HAVE_PERCPU_SB  /* per cpu superblock counters are a 2.6 feature */
110 #endif
111
112 /*
113  * State flag for unwritten extent buffers.
114  *
115  * We need to be able to distinguish between these and delayed
116  * allocate buffers within XFS.  The generic IO path code does
117  * not need to distinguish - we use the BH_Delay flag for both
118  * delalloc and these ondisk-uninitialised buffers.
119  */
120 BUFFER_FNS(PrivateStart, unwritten);
121
122 #define restricted_chown        xfs_params.restrict_chown.val
123 #define irix_sgid_inherit       xfs_params.sgid_inherit.val
124 #define irix_symlink_mode       xfs_params.symlink_mode.val
125 #define xfs_panic_mask          xfs_params.panic_mask.val
126 #define xfs_error_level         xfs_params.error_level.val
127 #define xfs_syncd_centisecs     xfs_params.syncd_timer.val
128 #define xfs_stats_clear         xfs_params.stats_clear.val
129 #define xfs_inherit_sync        xfs_params.inherit_sync.val
130 #define xfs_inherit_nodump      xfs_params.inherit_nodump.val
131 #define xfs_inherit_noatime     xfs_params.inherit_noatim.val
132 #define xfs_buf_timer_centisecs xfs_params.xfs_buf_timer.val
133 #define xfs_buf_age_centisecs   xfs_params.xfs_buf_age.val
134 #define xfs_inherit_nosymlinks  xfs_params.inherit_nosym.val
135 #define xfs_rotorstep           xfs_params.rotorstep.val
136 #define xfs_inherit_nodefrag    xfs_params.inherit_nodfrg.val
137
138 #define current_cpu()           (raw_smp_processor_id())
139 #define current_pid()           (current->pid)
140 #define current_fsuid(cred)     (current->fsuid)
141 #define current_fsgid(cred)     (current->fsgid)
142 #define current_test_flags(f)   (current->flags & (f))
143 #define current_set_flags_nested(sp, f)         \
144                 (*(sp) = current->flags, current->flags |= (f))
145 #define current_clear_flags_nested(sp, f)       \
146                 (*(sp) = current->flags, current->flags &= ~(f))
147 #define current_restore_flags_nested(sp, f)     \
148                 (current->flags = ((current->flags & ~(f)) | (*(sp) & (f))))
149
150 #define NBPP            PAGE_SIZE
151 #define DPPSHFT         (PAGE_SHIFT - 9)
152 #define NDPP            (1 << (PAGE_SHIFT - 9))
153 #define dtop(DD)        (((DD) + NDPP - 1) >> DPPSHFT)
154 #define dtopt(DD)       ((DD) >> DPPSHFT)
155 #define dpoff(DD)       ((DD) & (NDPP-1))
156
157 #define NBBY            8               /* number of bits per byte */
158 #define NBPC            PAGE_SIZE       /* Number of bytes per click */
159 #define BPCSHIFT        PAGE_SHIFT      /* LOG2(NBPC) if exact */
160
161 /*
162  * Size of block device i/o is parameterized here.
163  * Currently the system supports page-sized i/o.
164  */
165 #define BLKDEV_IOSHIFT          BPCSHIFT
166 #define BLKDEV_IOSIZE           (1<<BLKDEV_IOSHIFT)
167 /* number of BB's per block device block */
168 #define BLKDEV_BB               BTOBB(BLKDEV_IOSIZE)
169
170 /* bytes to clicks */
171 #define btoc(x)         (((__psunsigned_t)(x)+(NBPC-1))>>BPCSHIFT)
172 #define btoct(x)        ((__psunsigned_t)(x)>>BPCSHIFT)
173 #define btoc64(x)       (((__uint64_t)(x)+(NBPC-1))>>BPCSHIFT)
174 #define btoct64(x)      ((__uint64_t)(x)>>BPCSHIFT)
175 #define io_btoc(x)      (((__psunsigned_t)(x)+(IO_NBPC-1))>>IO_BPCSHIFT)
176 #define io_btoct(x)     ((__psunsigned_t)(x)>>IO_BPCSHIFT)
177
178 /* off_t bytes to clicks */
179 #define offtoc(x)       (((__uint64_t)(x)+(NBPC-1))>>BPCSHIFT)
180 #define offtoct(x)      ((xfs_off_t)(x)>>BPCSHIFT)
181
182 /* clicks to off_t bytes */
183 #define ctooff(x)       ((xfs_off_t)(x)<<BPCSHIFT)
184
185 /* clicks to bytes */
186 #define ctob(x)         ((__psunsigned_t)(x)<<BPCSHIFT)
187 #define btoct(x)        ((__psunsigned_t)(x)>>BPCSHIFT)
188 #define ctob64(x)       ((__uint64_t)(x)<<BPCSHIFT)
189 #define io_ctob(x)      ((__psunsigned_t)(x)<<IO_BPCSHIFT)
190
191 /* bytes to clicks */
192 #define btoc(x)         (((__psunsigned_t)(x)+(NBPC-1))>>BPCSHIFT)
193
194 #define ENOATTR         ENODATA         /* Attribute not found */
195 #define EWRONGFS        EINVAL          /* Mount with wrong filesystem type */
196 #define EFSCORRUPTED    EUCLEAN         /* Filesystem is corrupted */
197
198 #define SYNCHRONIZE()   barrier()
199 #define __return_address __builtin_return_address(0)
200
201 /*
202  * IRIX (BSD) quotactl makes use of separate commands for user/group,
203  * whereas on Linux the syscall encodes this information into the cmd
204  * field (see the QCMD macro in quota.h).  These macros help keep the
205  * code portable - they are not visible from the syscall interface.
206  */
207 #define Q_XSETGQLIM     XQM_CMD(8)      /* set groups disk limits */
208 #define Q_XGETGQUOTA    XQM_CMD(9)      /* get groups disk limits */
209 #define Q_XSETPQLIM     XQM_CMD(10)     /* set projects disk limits */
210 #define Q_XGETPQUOTA    XQM_CMD(11)     /* get projects disk limits */
211
212 #define dfltprid        0
213 #define MAXPATHLEN      1024
214
215 #define MIN(a,b)        (min(a,b))
216 #define MAX(a,b)        (max(a,b))
217 #define howmany(x, y)   (((x)+((y)-1))/(y))
218
219 /*
220  * Various platform dependent calls that don't fit anywhere else
221  */
222 #define xfs_sort(a,n,s,fn)      sort(a,n,s,fn,NULL)
223 #define xfs_stack_trace()       dump_stack()
224 #define xfs_itruncate_data(ip, off)     \
225         (-vmtruncate(vn_to_inode(XFS_ITOV(ip)), (off)))
226 #define xfs_statvfs_fsid(statp, mp)     \
227         ({ u64 id = huge_encode_dev((mp)->m_ddev_targp->bt_dev); \
228            __kernel_fsid_t *fsid = &(statp)->f_fsid;    \
229         (fsid->val[0] = (u32)id, fsid->val[1] = (u32)(id >> 32)); })
230
231
232 /* Move the kernel do_div definition off to one side */
233
234 #if defined __i386__
235 /* For ia32 we need to pull some tricks to get past various versions
236  * of the compiler which do not like us using do_div in the middle
237  * of large functions.
238  */
239 static inline __u32 xfs_do_div(void *a, __u32 b, int n)
240 {
241         __u32   mod;
242
243         switch (n) {
244                 case 4:
245                         mod = *(__u32 *)a % b;
246                         *(__u32 *)a = *(__u32 *)a / b;
247                         return mod;
248                 case 8:
249                         {
250                         unsigned long __upper, __low, __high, __mod;
251                         __u64   c = *(__u64 *)a;
252                         __upper = __high = c >> 32;
253                         __low = c;
254                         if (__high) {
255                                 __upper = __high % (b);
256                                 __high = __high / (b);
257                         }
258                         asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (b), "0" (__low), "1" (__upper));
259                         asm("":"=A" (c):"a" (__low),"d" (__high));
260                         *(__u64 *)a = c;
261                         return __mod;
262                         }
263         }
264
265         /* NOTREACHED */
266         return 0;
267 }
268
269 /* Side effect free 64 bit mod operation */
270 static inline __u32 xfs_do_mod(void *a, __u32 b, int n)
271 {
272         switch (n) {
273                 case 4:
274                         return *(__u32 *)a % b;
275                 case 8:
276                         {
277                         unsigned long __upper, __low, __high, __mod;
278                         __u64   c = *(__u64 *)a;
279                         __upper = __high = c >> 32;
280                         __low = c;
281                         if (__high) {
282                                 __upper = __high % (b);
283                                 __high = __high / (b);
284                         }
285                         asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (b), "0" (__low), "1" (__upper));
286                         asm("":"=A" (c):"a" (__low),"d" (__high));
287                         return __mod;
288                         }
289         }
290
291         /* NOTREACHED */
292         return 0;
293 }
294 #else
295 static inline __u32 xfs_do_div(void *a, __u32 b, int n)
296 {
297         __u32   mod;
298
299         switch (n) {
300                 case 4:
301                         mod = *(__u32 *)a % b;
302                         *(__u32 *)a = *(__u32 *)a / b;
303                         return mod;
304                 case 8:
305                         mod = do_div(*(__u64 *)a, b);
306                         return mod;
307         }
308
309         /* NOTREACHED */
310         return 0;
311 }
312
313 /* Side effect free 64 bit mod operation */
314 static inline __u32 xfs_do_mod(void *a, __u32 b, int n)
315 {
316         switch (n) {
317                 case 4:
318                         return *(__u32 *)a % b;
319                 case 8:
320                         {
321                         __u64   c = *(__u64 *)a;
322                         return do_div(c, b);
323                         }
324         }
325
326         /* NOTREACHED */
327         return 0;
328 }
329 #endif
330
331 #undef do_div
332 #define do_div(a, b)    xfs_do_div(&(a), (b), sizeof(a))
333 #define do_mod(a, b)    xfs_do_mod(&(a), (b), sizeof(a))
334
335 static inline __uint64_t roundup_64(__uint64_t x, __uint32_t y)
336 {
337         x += y - 1;
338         do_div(x, y);
339         return(x * y);
340 }
341
342 #endif /* __XFS_LINUX__ */