[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <11988745841697-git-send-email-ezk@cs.sunysb.edu>
Date: Fri, 28 Dec 2007 15:42:35 -0500
From: Erez Zadok <ezk@...sunysb.edu>
To: akpm@...ux-foundation.org
Cc: linux-kernel@...r.kernel.org, linux-fsdevel@...r.kernel.org,
viro@....linux.org.uk, hch@...radead.org,
Erez Zadok <ezk@...sunysb.edu>,
Mike Halcrow <mhalcrow@...ibm.com>,
Jan Engelhardt <jengelh@...putergmbh.de>
Subject: [PATCH 01/30] VFS/fs_stack: drop cast on inode passed to i_size_read
i_size_read() takes 'const struct inode *' already, as of 2.6.20.
CC: Mike Halcrow <mhalcrow@...ibm.com>
Signed-off-by: Jan Engelhardt <jengelh@...putergmbh.de>
Signed-off-by: Erez Zadok <ezk@...sunysb.edu>
---
fs/stack.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/stack.c b/fs/stack.c
index a548aac..7913fe5 100644
--- a/fs/stack.c
+++ b/fs/stack.c
@@ -21,7 +21,7 @@
*/
void fsstack_copy_inode_size(struct inode *dst, const struct inode *src)
{
- i_size_write(dst, i_size_read((struct inode *)src));
+ i_size_write(dst, i_size_read(src));
dst->i_blocks = src->i_blocks;
}
EXPORT_SYMBOL_GPL(fsstack_copy_inode_size);
--
1.5.2.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists