diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2011-05-10 08:09:53 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2011-05-10 08:09:53 -0400 |
commit | 64ea5402581485237d3b6e3a0cf2b364ad8bd580 (patch) | |
tree | 3639c3de9d64ee89360ec190f3029766fc0ed9ca /fs/gfs2 | |
parent | 9eed04cd99b0a497cf0da22658808a7f5b10d734 (diff) |
GFS2: Inode.c is empty now, remove it
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/Makefile | 2 | ||||
-rw-r--r-- | fs/gfs2/inode.c | 38 |
2 files changed, 1 insertions, 39 deletions
diff --git a/fs/gfs2/Makefile b/fs/gfs2/Makefile index f3d23ef4e876..d22edbb0108f 100644 --- a/fs/gfs2/Makefile +++ b/fs/gfs2/Makefile | |||
@@ -1,7 +1,7 @@ | |||
1 | ccflags-y := -I$(src) | 1 | ccflags-y := -I$(src) |
2 | obj-$(CONFIG_GFS2_FS) += gfs2.o | 2 | obj-$(CONFIG_GFS2_FS) += gfs2.o |
3 | gfs2-y := acl.o bmap.o dir.o xattr.o glock.o \ | 3 | gfs2-y := acl.o bmap.o dir.o xattr.o glock.o \ |
4 | glops.o inode.o log.o lops.o main.o meta_io.o \ | 4 | glops.o log.o lops.o main.o meta_io.o \ |
5 | aops.o dentry.o export.o file.o \ | 5 | aops.o dentry.o export.o file.o \ |
6 | ops_fstype.o ops_inode.o quota.o \ | 6 | ops_fstype.o ops_inode.o quota.o \ |
7 | recovery.o rgrp.o super.o sys.o trans.o util.o | 7 | recovery.o rgrp.o super.o sys.o trans.o util.o |
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c deleted file mode 100644 index 9076fbe23416..000000000000 --- a/fs/gfs2/inode.c +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. | ||
3 | * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. | ||
4 | * | ||
5 | * This copyrighted material is made available to anyone wishing to use, | ||
6 | * modify, copy, or redistribute it subject to the terms and conditions | ||
7 | * of the GNU General Public License version 2. | ||
8 | */ | ||
9 | |||
10 | #include <linux/sched.h> | ||
11 | #include <linux/slab.h> | ||
12 | #include <linux/spinlock.h> | ||
13 | #include <linux/completion.h> | ||
14 | #include <linux/buffer_head.h> | ||
15 | #include <linux/posix_acl.h> | ||
16 | #include <linux/sort.h> | ||
17 | #include <linux/gfs2_ondisk.h> | ||
18 | #include <linux/crc32.h> | ||
19 | #include <linux/security.h> | ||
20 | #include <linux/time.h> | ||
21 | |||
22 | #include "gfs2.h" | ||
23 | #include "incore.h" | ||
24 | #include "acl.h" | ||
25 | #include "bmap.h" | ||
26 | #include "dir.h" | ||
27 | #include "xattr.h" | ||
28 | #include "glock.h" | ||
29 | #include "glops.h" | ||
30 | #include "inode.h" | ||
31 | #include "log.h" | ||
32 | #include "meta_io.h" | ||
33 | #include "quota.h" | ||
34 | #include "rgrp.h" | ||
35 | #include "trans.h" | ||
36 | #include "util.h" | ||
37 | |||
38 | |||