diff options
author | Christoph Hellwig <hch@infradead.org> | 2009-04-27 09:46:45 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2009-06-11 21:36:05 -0400 |
commit | 517bfae28353e996160518add4d00033d3886e61 (patch) | |
tree | 037d4c4de72da1c65a8be7c33a28f5ebcf0b31a3 /fs/qnx4 | |
parent | 94cb993f2ee99f3a9318e7b4dbb383497c4bedea (diff) |
qnx4: remove ->write_super
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/qnx4')
-rw-r--r-- | fs/qnx4/inode.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/fs/qnx4/inode.c b/fs/qnx4/inode.c index fe1f0f31d11c..95c12fc613f1 100644 --- a/fs/qnx4/inode.c +++ b/fs/qnx4/inode.c | |||
@@ -70,14 +70,6 @@ static void qnx4_delete_inode(struct inode *inode) | |||
70 | unlock_kernel(); | 70 | unlock_kernel(); |
71 | } | 71 | } |
72 | 72 | ||
73 | static void qnx4_write_super(struct super_block *sb) | ||
74 | { | ||
75 | lock_kernel(); | ||
76 | QNX4DEBUG(("qnx4: write_super\n")); | ||
77 | sb->s_dirt = 0; | ||
78 | unlock_kernel(); | ||
79 | } | ||
80 | |||
81 | static int qnx4_write_inode(struct inode *inode, int unused) | 73 | static int qnx4_write_inode(struct inode *inode, int unused) |
82 | { | 74 | { |
83 | struct qnx4_inode_entry *raw_inode; | 75 | struct qnx4_inode_entry *raw_inode; |
@@ -138,7 +130,6 @@ static const struct super_operations qnx4_sops = | |||
138 | #ifdef CONFIG_QNX4FS_RW | 130 | #ifdef CONFIG_QNX4FS_RW |
139 | .write_inode = qnx4_write_inode, | 131 | .write_inode = qnx4_write_inode, |
140 | .delete_inode = qnx4_delete_inode, | 132 | .delete_inode = qnx4_delete_inode, |
141 | .write_super = qnx4_write_super, | ||
142 | #endif | 133 | #endif |
143 | }; | 134 | }; |
144 | 135 | ||