Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 280230
b: refs/heads/master
c: 6a9a06d
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro committed Jan 4, 2012
1 parent b494964 commit ff2768d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4f45ba3d101fd882ed122059e6797786c81e2c17
refs/heads/master: 6a9a06d9ca3d307bd83d93e442ad964f5de7ec2c
2 changes: 1 addition & 1 deletion trunk/fs/ufs/ialloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ static void ufs2_init_inodes_chunk(struct super_block *sb,
* For other inodes, search forward from the parent directory's block
* group to find a free inode.
*/
struct inode * ufs_new_inode(struct inode * dir, int mode)
struct inode *ufs_new_inode(struct inode *dir, umode_t mode)
{
struct super_block * sb;
struct ufs_sb_info * sbi;
Expand Down
4 changes: 2 additions & 2 deletions trunk/fs/ufs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ static int ufs1_read_inode(struct inode *inode, struct ufs_inode *ufs_inode)
{
struct ufs_inode_info *ufsi = UFS_I(inode);
struct super_block *sb = inode->i_sb;
mode_t mode;
umode_t mode;

/*
* Copy data to the in-core inode.
Expand Down Expand Up @@ -630,7 +630,7 @@ static int ufs2_read_inode(struct inode *inode, struct ufs2_inode *ufs2_inode)
{
struct ufs_inode_info *ufsi = UFS_I(inode);
struct super_block *sb = inode->i_sb;
mode_t mode;
umode_t mode;

UFSD("Reading ufs2 inode, ino %lu\n", inode->i_ino);
/*
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/ufs/ufs.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ extern const struct address_space_operations ufs_aops;

/* ialloc.c */
extern void ufs_free_inode (struct inode *inode);
extern struct inode * ufs_new_inode (struct inode *, int);
extern struct inode * ufs_new_inode (struct inode *, umode_t);

/* inode.c */
extern struct inode *ufs_iget(struct super_block *, unsigned long);
Expand Down

0 comments on commit ff2768d

Please sign in to comment.