Skip to content

Commit

Permalink
reiserfs: rename p_._ variables
Browse files Browse the repository at this point in the history
This patch is a simple s/p_._//g to the reiserfs code.  This is the
fifth 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>
  • Loading branch information
Jeff Mahoney authored and Linus Torvalds committed Mar 30, 2009
1 parent a063ae1 commit d68caa9
Show file tree
Hide file tree
Showing 5 changed files with 365 additions and 356 deletions.
6 changes: 3 additions & 3 deletions fs/reiserfs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,10 @@ static void reiserfs_vfs_truncate_file(struct inode *inode)
* be removed...
*/

static int reiserfs_sync_file(struct file *p_s_filp,
struct dentry *p_s_dentry, int datasync)
static int reiserfs_sync_file(struct file *filp,
struct dentry *dentry, int datasync)
{
struct inode *inode = p_s_dentry->d_inode;
struct inode *inode = dentry->d_inode;
int n_err;
int barrier_done;

Expand Down
Loading

0 comments on commit d68caa9

Please sign in to comment.