aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJeff Mahoney <jeffm@suse.com>2009-03-30 14:02:47 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2009-03-30 15:16:39 -0400
commit995c762ea486b48c9777522071fbf132dea96807 (patch)
treed6d82ca71ca67a98687762b83ce2858eb8dc624f /include
parentad31a4fc0386e8590c51ca4b8f1ae1d8b8b2ac5e (diff)
reiserfs: rename p_s_inode to inode
This patch is a simple s/p_s_inode/inode/g to the reiserfs code. This is the third in a series of patches to rip out some of the awful variable naming in reiserfs. Signed-off-by: Jeff Mahoney <jeffm@suse.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/reiserfs_fs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/reiserfs_fs.h b/include/linux/reiserfs_fs.h
index 9cfa518c90b6..3192dc793226 100644
--- a/include/linux/reiserfs_fs.h
+++ b/include/linux/reiserfs_fs.h
@@ -1870,9 +1870,9 @@ int reiserfs_delete_item(struct reiserfs_transaction_handle *th,
1870void reiserfs_delete_solid_item(struct reiserfs_transaction_handle *th, 1870void reiserfs_delete_solid_item(struct reiserfs_transaction_handle *th,
1871 struct inode *inode, struct reiserfs_key *key); 1871 struct inode *inode, struct reiserfs_key *key);
1872int reiserfs_delete_object(struct reiserfs_transaction_handle *th, 1872int reiserfs_delete_object(struct reiserfs_transaction_handle *th,
1873 struct inode *p_s_inode); 1873 struct inode *inode);
1874int reiserfs_do_truncate(struct reiserfs_transaction_handle *th, 1874int reiserfs_do_truncate(struct reiserfs_transaction_handle *th,
1875 struct inode *p_s_inode, struct page *, 1875 struct inode *inode, struct page *,
1876 int update_timestamps); 1876 int update_timestamps);
1877 1877
1878#define i_block_size(inode) ((inode)->i_sb->s_blocksize) 1878#define i_block_size(inode) ((inode)->i_sb->s_blocksize)