Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
8e071892
Commit
8e071892
authored
Jul 26, 2011
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reiserfs: propagate umode_t
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
576b1d67
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
fs/reiserfs/inode.c
fs/reiserfs/inode.c
+1
-1
fs/reiserfs/namei.c
fs/reiserfs/namei.c
+1
-1
include/linux/reiserfs_fs.h
include/linux/reiserfs_fs.h
+1
-1
No files found.
fs/reiserfs/inode.c
View file @
8e071892
...
...
@@ -1766,7 +1766,7 @@ static int reiserfs_new_symlink(struct reiserfs_transaction_handle *th, struct i
for the fresh inode. This can only be done outside a transaction, so
if we return non-zero, we also end the transaction. */
int
reiserfs_new_inode
(
struct
reiserfs_transaction_handle
*
th
,
struct
inode
*
dir
,
in
t
mode
,
const
char
*
symname
,
struct
inode
*
dir
,
umode_
t
mode
,
const
char
*
symname
,
/* 0 for regular, EMTRY_DIR_SIZE for dirs,
strlen (symname) for symlinks) */
loff_t
i_size
,
struct
dentry
*
dentry
,
...
...
fs/reiserfs/namei.c
View file @
8e071892
...
...
@@ -559,7 +559,7 @@ static int drop_new_inode(struct inode *inode)
** outside of a transaction, so we had to pull some bits of
** reiserfs_new_inode out into this func.
*/
static
int
new_inode_init
(
struct
inode
*
inode
,
struct
inode
*
dir
,
in
t
mode
)
static
int
new_inode_init
(
struct
inode
*
inode
,
struct
inode
*
dir
,
umode_
t
mode
)
{
/* Make inode invalid - just in case we are going to drop it before
* the initialization happens */
...
...
include/linux/reiserfs_fs.h
View file @
8e071892
...
...
@@ -2056,7 +2056,7 @@ struct inode *reiserfs_iget(struct super_block *s, const struct cpu_key *key);
struct
reiserfs_security_handle
;
int
reiserfs_new_inode
(
struct
reiserfs_transaction_handle
*
th
,
struct
inode
*
dir
,
in
t
mode
,
struct
inode
*
dir
,
umode_
t
mode
,
const
char
*
symname
,
loff_t
i_size
,
struct
dentry
*
dentry
,
struct
inode
*
inode
,
struct
reiserfs_security_handle
*
security
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment