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>
81
#include <linux/rhashtable.h>
L
Linus Torvalds 已提交
82 83 84 85 86 87 88 89

#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 已提交
90
#include "xfs_fs.h"
91 92 93 94 95
#include "xfs_stats.h"
#include "xfs_sysctl.h"
#include "xfs_iops.h"
#include "xfs_aops.h"
#include "xfs_super.h"
96
#include "xfs_cksum.h"
97 98
#include "xfs_buf.h"
#include "xfs_message.h"
L
Linus Torvalds 已提交
99

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

L
Linus Torvalds 已提交
106 107 108 109 110 111 112 113 114 115 116
#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
117
#define xfs_inherit_nodefrag	xfs_params.inherit_nodfrg.val
118
#define xfs_fstrm_centisecs	xfs_params.fstrm_timer.val
119
#define xfs_eofb_secs		xfs_params.eofb_timer.val
120
#define xfs_cowb_secs		xfs_params.cowb_timer.val
L
Linus Torvalds 已提交
121

122
#define current_cpu()		(raw_smp_processor_id())
L
Linus Torvalds 已提交
123
#define current_pid()		(current->pid)
124 125 126 127 128 129 130
#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 已提交
131

E
Eric Sandeen 已提交
132 133
#define spinlock_destroy(lock)

L
Linus Torvalds 已提交
134 135 136 137 138 139
#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.
 */
140
#define	BLKDEV_IOSHIFT		PAGE_SHIFT
L
Linus Torvalds 已提交
141 142 143 144 145
#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 */
146 147
#define EWRONGFS	EINVAL		/* Mount with wrong filesystem type */
#define EFSCORRUPTED	EUCLEAN		/* Filesystem is corrupted */
E
Eric Sandeen 已提交
148
#define EFSBADCRC	EBADMSG		/* Bad CRC detected */
L
Linus Torvalds 已提交
149 150 151 152

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

153
#define XFS_PROJID_DEFAULT	0
L
Linus Torvalds 已提交
154 155 156 157 158 159
#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 已提交
160 161 162 163 164
static inline void delay(long ticks)
{
	schedule_timeout_uninterruptible(ticks);
}

B
Brian Foster 已提交
165 166 167 168 169 170 171 172 173 174 175
/*
 * 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;
};

176 177 178 179 180 181 182
struct xstats {
	struct xfsstats __percpu	*xs_stats;
	struct xfs_kobj			xs_kobj;
};

extern struct xstats xfsstats;

183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
/* 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);
}

209 210 211
/*
 * Various platform dependent calls that don't fit anywhere else
 */
212
#define xfs_sort(a,n,s,fn)	sort(a,n,s,fn,NULL)
L
Linus Torvalds 已提交
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 314 315 316 317 318 319 320 321 322
#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 已提交
323
	return x * y;
L
Linus Torvalds 已提交
324 325
}

326 327 328 329 330 331 332
static inline __uint64_t howmany_64(__uint64_t x, __uint32_t y)
{
	x += y - 1;
	do_div(x, y);
	return x;
}

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

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

#ifndef STATIC
D
Dave Chinner 已提交
341
# define STATIC noinline
D
Dave Chinner 已提交
342 343
#endif

D
Dave Chinner 已提交
344 345 346
#else	/* !DEBUG */

#ifdef XFS_WARN
D
Dave Chinner 已提交
347 348

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

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

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

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

#ifndef STATIC
# define STATIC static noinline
D
Dave Chinner 已提交
361 362
#endif

D
Dave Chinner 已提交
363
#endif /* XFS_WARN */
D
Dave Chinner 已提交
364 365
#endif /* DEBUG */

366 367 368 369 370 371
#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 已提交
372
#endif /* __XFS_LINUX__ */