xfs_linux.h 9.1 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2 3
 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
 * All Rights Reserved.
L
Linus Torvalds 已提交
4
 *
5 6
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
L
Linus Torvalds 已提交
7 8
 * published by the Free Software Foundation.
 *
9 10 11 12
 * This program is distributed in the hope that it would be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
L
Linus Torvalds 已提交
13
 *
14 15 16
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write the Free Software Foundation,
 * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
L
Linus Torvalds 已提交
17 18 19 20 21 22
 */
#ifndef __XFS_LINUX__
#define __XFS_LINUX__

#include <linux/types.h>

23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
/*
 * Kernel specific type declarations for XFS
 */
typedef signed char		__int8_t;
typedef unsigned char		__uint8_t;
typedef signed short int	__int16_t;
typedef unsigned short int	__uint16_t;
typedef signed int		__int32_t;
typedef unsigned int		__uint32_t;
typedef signed long long int	__int64_t;
typedef unsigned long long int	__uint64_t;

typedef __s64			xfs_off_t;	/* <file offset> type */
typedef unsigned long long	xfs_ino_t;	/* <inode> type */
typedef __s64			xfs_daddr_t;	/* <disk address> type */
typedef __u32			xfs_dev_t;
typedef __u32			xfs_nlink_t;

41
#include "xfs_types.h"
L
Linus Torvalds 已提交
42

43 44 45
#include "kmem.h"
#include "mrlock.h"
#include "uuid.h"
L
Linus Torvalds 已提交
46

47
#include <linux/semaphore.h>
L
Linus Torvalds 已提交
48 49 50 51
#include <linux/mm.h>
#include <linux/kernel.h>
#include <linux/blkdev.h>
#include <linux/slab.h>
C
Christoph Hellwig 已提交
52
#include <linux/crc32c.h>
L
Linus Torvalds 已提交
53
#include <linux/module.h>
C
Christoph Hellwig 已提交
54
#include <linux/mutex.h>
L
Linus Torvalds 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67
#include <linux/file.h>
#include <linux/swap.h>
#include <linux/errno.h>
#include <linux/sched.h>
#include <linux/bitops.h>
#include <linux/major.h>
#include <linux/pagemap.h>
#include <linux/vfs.h>
#include <linux/seq_file.h>
#include <linux/init.h>
#include <linux/list.h>
#include <linux/proc_fs.h>
#include <linux/sort.h>
68 69
#include <linux/cpu.h>
#include <linux/notifier.h>
70
#include <linux/delay.h>
71
#include <linux/log2.h>
E
Eric Sandeen 已提交
72
#include <linux/spinlock.h>
73
#include <linux/random.h>
74
#include <linux/ctype.h>
75
#include <linux/writeback.h>
C
Christoph Hellwig 已提交
76
#include <linux/capability.h>
77 78
#include <linux/kthread.h>
#include <linux/freezer.h>
79
#include <linux/list_sort.h>
80
#include <linux/ratelimit.h>
L
Linus Torvalds 已提交
81 82 83 84 85 86 87 88

#include <asm/page.h>
#include <asm/div64.h>
#include <asm/param.h>
#include <asm/uaccess.h>
#include <asm/byteorder.h>
#include <asm/unaligned.h>

D
Dave Chinner 已提交
89
#include "xfs_fs.h"
90 91 92 93 94
#include "xfs_stats.h"
#include "xfs_sysctl.h"
#include "xfs_iops.h"
#include "xfs_aops.h"
#include "xfs_super.h"
95
#include "xfs_cksum.h"
96 97
#include "xfs_buf.h"
#include "xfs_message.h"
L
Linus Torvalds 已提交
98

99 100 101 102 103 104
#ifdef __BIG_ENDIAN
#define XFS_NATIVE_HOST 1
#else
#undef XFS_NATIVE_HOST
#endif

L
Linus Torvalds 已提交
105 106 107 108 109 110 111 112 113 114 115
#define irix_sgid_inherit	xfs_params.sgid_inherit.val
#define irix_symlink_mode	xfs_params.symlink_mode.val
#define xfs_panic_mask		xfs_params.panic_mask.val
#define xfs_error_level		xfs_params.error_level.val
#define xfs_syncd_centisecs	xfs_params.syncd_timer.val
#define xfs_stats_clear		xfs_params.stats_clear.val
#define xfs_inherit_sync	xfs_params.inherit_sync.val
#define xfs_inherit_nodump	xfs_params.inherit_nodump.val
#define xfs_inherit_noatime	xfs_params.inherit_noatim.val
#define xfs_inherit_nosymlinks	xfs_params.inherit_nosym.val
#define xfs_rotorstep		xfs_params.rotorstep.val
116
#define xfs_inherit_nodefrag	xfs_params.inherit_nodfrg.val
117
#define xfs_fstrm_centisecs	xfs_params.fstrm_timer.val
118
#define xfs_eofb_secs		xfs_params.eofb_timer.val
L
Linus Torvalds 已提交
119

120
#define current_cpu()		(raw_smp_processor_id())
L
Linus Torvalds 已提交
121
#define current_pid()		(current->pid)
122 123 124 125 126 127 128
#define current_test_flags(f)	(current->flags & (f))
#define current_set_flags_nested(sp, f)		\
		(*(sp) = current->flags, current->flags |= (f))
#define current_clear_flags_nested(sp, f)	\
		(*(sp) = current->flags, current->flags &= ~(f))
#define current_restore_flags_nested(sp, f)	\
		(current->flags = ((current->flags & ~(f)) | (*(sp) & (f))))
L
Linus Torvalds 已提交
129

E
Eric Sandeen 已提交
130 131
#define spinlock_destroy(lock)

L
Linus Torvalds 已提交
132 133 134 135 136 137
#define NBBY		8		/* number of bits per byte */

/*
 * Size of block device i/o is parameterized here.
 * Currently the system supports page-sized i/o.
 */
138
#define	BLKDEV_IOSHIFT		PAGE_CACHE_SHIFT
L
Linus Torvalds 已提交
139 140 141 142 143
#define	BLKDEV_IOSIZE		(1<<BLKDEV_IOSHIFT)
/* number of BB's per block device block */
#define	BLKDEV_BB		BTOBB(BLKDEV_IOSIZE)

#define ENOATTR		ENODATA		/* Attribute not found */
144 145
#define EWRONGFS	EINVAL		/* Mount with wrong filesystem type */
#define EFSCORRUPTED	EUCLEAN		/* Filesystem is corrupted */
E
Eric Sandeen 已提交
146
#define EFSBADCRC	EBADMSG		/* Bad CRC detected */
L
Linus Torvalds 已提交
147 148 149 150

#define SYNCHRONIZE()	barrier()
#define __return_address __builtin_return_address(0)

151
#define XFS_PROJID_DEFAULT	0
L
Linus Torvalds 已提交
152 153 154 155 156 157
#define MAXPATHLEN	1024

#define MIN(a,b)	(min(a,b))
#define MAX(a,b)	(max(a,b))
#define howmany(x, y)	(((x)+((y)-1))/(y))

D
Dave Chinner 已提交
158 159 160 161 162
static inline void delay(long ticks)
{
	schedule_timeout_uninterruptible(ticks);
}

B
Brian Foster 已提交
163 164 165 166 167 168 169 170 171 172 173
/*
 * XFS wrapper structure for sysfs support. It depends on external data
 * structures and is embedded in various internal data structures to implement
 * the XFS sysfs object heirarchy. Define it here for broad access throughout
 * the codebase.
 */
struct xfs_kobj {
	struct kobject		kobject;
	struct completion	complete;
};

174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
/* Kernel uid/gid conversion. These are used to convert to/from the on disk
 * uid_t/gid_t types to the kuid_t/kgid_t types that the kernel uses internally.
 * The conversion here is type only, the value will remain the same since we
 * are converting to the init_user_ns. The uid is later mapped to a particular
 * user namespace value when crossing the kernel/user boundary.
 */
static inline __uint32_t xfs_kuid_to_uid(kuid_t uid)
{
	return from_kuid(&init_user_ns, uid);
}

static inline kuid_t xfs_uid_to_kuid(__uint32_t uid)
{
	return make_kuid(&init_user_ns, uid);
}

static inline __uint32_t xfs_kgid_to_gid(kgid_t gid)
{
	return from_kgid(&init_user_ns, gid);
}

static inline kgid_t xfs_gid_to_kgid(__uint32_t gid)
{
	return make_kgid(&init_user_ns, gid);
}

200 201 202
/*
 * Various platform dependent calls that don't fit anywhere else
 */
203
#define xfs_sort(a,n,s,fn)	sort(a,n,s,fn,NULL)
L
Linus Torvalds 已提交
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
#define xfs_stack_trace()	dump_stack()


/* Move the kernel do_div definition off to one side */

#if defined __i386__
/* For ia32 we need to pull some tricks to get past various versions
 * of the compiler which do not like us using do_div in the middle
 * of large functions.
 */
static inline __u32 xfs_do_div(void *a, __u32 b, int n)
{
	__u32	mod;

	switch (n) {
		case 4:
			mod = *(__u32 *)a % b;
			*(__u32 *)a = *(__u32 *)a / b;
			return mod;
		case 8:
			{
			unsigned long __upper, __low, __high, __mod;
			__u64	c = *(__u64 *)a;
			__upper = __high = c >> 32;
			__low = c;
			if (__high) {
				__upper = __high % (b);
				__high = __high / (b);
			}
			asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (b), "0" (__low), "1" (__upper));
			asm("":"=A" (c):"a" (__low),"d" (__high));
			*(__u64 *)a = c;
			return __mod;
			}
	}

	/* NOTREACHED */
	return 0;
}

/* Side effect free 64 bit mod operation */
static inline __u32 xfs_do_mod(void *a, __u32 b, int n)
{
	switch (n) {
		case 4:
			return *(__u32 *)a % b;
		case 8:
			{
			unsigned long __upper, __low, __high, __mod;
			__u64	c = *(__u64 *)a;
			__upper = __high = c >> 32;
			__low = c;
			if (__high) {
				__upper = __high % (b);
				__high = __high / (b);
			}
			asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (b), "0" (__low), "1" (__upper));
			asm("":"=A" (c):"a" (__low),"d" (__high));
			return __mod;
			}
	}

	/* NOTREACHED */
	return 0;
}
#else
static inline __u32 xfs_do_div(void *a, __u32 b, int n)
{
	__u32	mod;

	switch (n) {
		case 4:
			mod = *(__u32 *)a % b;
			*(__u32 *)a = *(__u32 *)a / b;
			return mod;
		case 8:
			mod = do_div(*(__u64 *)a, b);
			return mod;
	}

	/* NOTREACHED */
	return 0;
}

/* Side effect free 64 bit mod operation */
static inline __u32 xfs_do_mod(void *a, __u32 b, int n)
{
	switch (n) {
		case 4:
			return *(__u32 *)a % b;
		case 8:
			{
			__u64	c = *(__u64 *)a;
			return do_div(c, b);
			}
	}

	/* NOTREACHED */
	return 0;
}
#endif

#undef do_div
#define do_div(a, b)	xfs_do_div(&(a), (b), sizeof(a))
#define do_mod(a, b)	xfs_do_mod(&(a), (b), sizeof(a))

static inline __uint64_t roundup_64(__uint64_t x, __uint32_t y)
{
	x += y - 1;
	do_div(x, y);
E
Eric Sandeen 已提交
314
	return x * y;
L
Linus Torvalds 已提交
315 316
}

317 318 319 320 321 322 323
static inline __uint64_t howmany_64(__uint64_t x, __uint32_t y)
{
	x += y - 1;
	do_div(x, y);
	return x;
}

324 325 326 327 328 329 330
/* ARM old ABI has some weird alignment/padding */
#if defined(__arm__) && !defined(__ARM_EABI__)
#define __arch_pack __attribute__((packed))
#else
#define __arch_pack
#endif

D
Dave Chinner 已提交
331 332 333
#define ASSERT_ALWAYS(expr)	\
	(unlikely(expr) ? (void)0 : assfail(#expr, __FILE__, __LINE__))

D
Dave Chinner 已提交
334 335 336
#ifdef DEBUG
#define ASSERT(expr)	\
	(unlikely(expr) ? (void)0 : assfail(#expr, __FILE__, __LINE__))
D
Dave Chinner 已提交
337 338

#ifndef STATIC
D
Dave Chinner 已提交
339
# define STATIC noinline
D
Dave Chinner 已提交
340 341
#endif

D
Dave Chinner 已提交
342 343 344
#else	/* !DEBUG */

#ifdef XFS_WARN
D
Dave Chinner 已提交
345 346

#define ASSERT(expr)	\
D
Dave Chinner 已提交
347
	(unlikely(expr) ? (void)0 : asswarn(#expr, __FILE__, __LINE__))
D
Dave Chinner 已提交
348 349

#ifndef STATIC
D
Dave Chinner 已提交
350 351 352 353 354 355 356 357 358
# define STATIC static noinline
#endif

#else	/* !DEBUG && !XFS_WARN */

#define ASSERT(expr)	((void)0)

#ifndef STATIC
# define STATIC static noinline
D
Dave Chinner 已提交
359 360
#endif

D
Dave Chinner 已提交
361
#endif /* XFS_WARN */
D
Dave Chinner 已提交
362 363
#endif /* DEBUG */

364 365 366 367 368 369
#ifdef CONFIG_XFS_RT
#define XFS_IS_REALTIME_INODE(ip) ((ip)->i_d.di_flags & XFS_DIFLAG_REALTIME)
#else
#define XFS_IS_REALTIME_INODE(ip) (0)
#endif

L
Linus Torvalds 已提交
370
#endif /* __XFS_LINUX__ */