diff options
author | Nathan Scott <nathans@sgi.com> | 2005-11-01 22:38:42 -0500 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2005-11-01 22:38:42 -0500 |
commit | a844f4510dce23c07f3923cb42138f5fdd745017 (patch) | |
tree | ffb37e9e60f02d5e92bd69bb53b568e1c991c17f /fs/xfs/xfs_vfsops.c | |
parent | 61c1e689fbde7cb50a76262bba190715d86beab6 (diff) |
[XFS] Remove xfs_macros.c, xfs_macros.h, rework headers a whole lot.
SGI-PV: 943122
SGI-Modid: xfs-linux:xfs-kern:23901a
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_vfsops.c')
-rw-r--r-- | fs/xfs/xfs_vfsops.c | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/fs/xfs/xfs_vfsops.c b/fs/xfs/xfs_vfsops.c index 200e0c50acf2..9ea201762a9c 100644 --- a/fs/xfs/xfs_vfsops.c +++ b/fs/xfs/xfs_vfsops.c | |||
@@ -1,6 +1,4 @@ | |||
1 | /* | 1 | /* |
2 | * XFS filesystem operations. | ||
3 | * | ||
4 | * Copyright (c) 2000-2005 Silicon Graphics, Inc. All Rights Reserved. | 2 | * Copyright (c) 2000-2005 Silicon Graphics, Inc. All Rights Reserved. |
5 | * | 3 | * |
6 | * This program is free software; you can redistribute it and/or modify it | 4 | * This program is free software; you can redistribute it and/or modify it |
@@ -31,44 +29,44 @@ | |||
31 | * | 29 | * |
32 | * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ | 30 | * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ |
33 | */ | 31 | */ |
34 | |||
35 | #include "xfs.h" | 32 | #include "xfs.h" |
36 | #include "xfs_macros.h" | 33 | #include "xfs_fs.h" |
37 | #include "xfs_types.h" | 34 | #include "xfs_types.h" |
38 | #include "xfs_inum.h" | 35 | #include "xfs_bit.h" |
39 | #include "xfs_log.h" | 36 | #include "xfs_log.h" |
37 | #include "xfs_inum.h" | ||
40 | #include "xfs_trans.h" | 38 | #include "xfs_trans.h" |
41 | #include "xfs_sb.h" | 39 | #include "xfs_sb.h" |
40 | #include "xfs_ag.h" | ||
42 | #include "xfs_dir.h" | 41 | #include "xfs_dir.h" |
43 | #include "xfs_dir2.h" | 42 | #include "xfs_dir2.h" |
44 | #include "xfs_dmapi.h" | 43 | #include "xfs_dmapi.h" |
45 | #include "xfs_mount.h" | 44 | #include "xfs_mount.h" |
45 | #include "xfs_da_btree.h" | ||
46 | #include "xfs_bmap_btree.h" | 46 | #include "xfs_bmap_btree.h" |
47 | #include "xfs_ialloc_btree.h" | 47 | #include "xfs_ialloc_btree.h" |
48 | #include "xfs_alloc_btree.h" | 48 | #include "xfs_alloc_btree.h" |
49 | #include "xfs_btree.h" | ||
50 | #include "xfs_alloc.h" | ||
51 | #include "xfs_ialloc.h" | ||
52 | #include "xfs_attr_sf.h" | ||
53 | #include "xfs_dir_sf.h" | 49 | #include "xfs_dir_sf.h" |
54 | #include "xfs_dir2_sf.h" | 50 | #include "xfs_dir2_sf.h" |
51 | #include "xfs_attr_sf.h" | ||
55 | #include "xfs_dinode.h" | 52 | #include "xfs_dinode.h" |
56 | #include "xfs_inode_item.h" | ||
57 | #include "xfs_inode.h" | 53 | #include "xfs_inode.h" |
58 | #include "xfs_ag.h" | 54 | #include "xfs_inode_item.h" |
55 | #include "xfs_btree.h" | ||
56 | #include "xfs_alloc.h" | ||
57 | #include "xfs_ialloc.h" | ||
58 | #include "xfs_quota.h" | ||
59 | #include "xfs_error.h" | 59 | #include "xfs_error.h" |
60 | #include "xfs_bmap.h" | 60 | #include "xfs_bmap.h" |
61 | #include "xfs_da_btree.h" | ||
62 | #include "xfs_rw.h" | 61 | #include "xfs_rw.h" |
63 | #include "xfs_refcache.h" | 62 | #include "xfs_refcache.h" |
64 | #include "xfs_buf_item.h" | 63 | #include "xfs_buf_item.h" |
65 | #include "xfs_extfree_item.h" | 64 | #include "xfs_log_priv.h" |
66 | #include "xfs_quota.h" | ||
67 | #include "xfs_dir2_trace.h" | 65 | #include "xfs_dir2_trace.h" |
66 | #include "xfs_extfree_item.h" | ||
68 | #include "xfs_acl.h" | 67 | #include "xfs_acl.h" |
69 | #include "xfs_attr.h" | 68 | #include "xfs_attr.h" |
70 | #include "xfs_clnt.h" | 69 | #include "xfs_clnt.h" |
71 | #include "xfs_log_priv.h" | ||
72 | 70 | ||
73 | STATIC int xfs_sync(bhv_desc_t *, int, cred_t *); | 71 | STATIC int xfs_sync(bhv_desc_t *, int, cred_t *); |
74 | 72 | ||