Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

sysv: propagate umode_t

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>

Al Viro dd716e64 6a9a06d9

+2 -2
+1 -1
fs/sysv/ialloc.c
··· 132 132 brelse(bh); 133 133 } 134 134 135 - struct inode * sysv_new_inode(const struct inode * dir, mode_t mode) 135 + struct inode * sysv_new_inode(const struct inode * dir, umode_t mode) 136 136 { 137 137 struct super_block *sb = dir->i_sb; 138 138 struct sysv_sb_info *sbi = SYSV_SB(sb);
+1 -1
fs/sysv/sysv.h
··· 125 125 /* ialloc.c */ 126 126 extern struct sysv_inode *sysv_raw_inode(struct super_block *, unsigned, 127 127 struct buffer_head **); 128 - extern struct inode * sysv_new_inode(const struct inode *, mode_t); 128 + extern struct inode * sysv_new_inode(const struct inode *, umode_t); 129 129 extern void sysv_free_inode(struct inode *); 130 130 extern unsigned long sysv_count_free_inodes(struct super_block *); 131 131