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
nexedi
linux
Commits
64f1426f
Commit
64f1426f
authored
Jul 25, 2011
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sunrpc: propagate umode_t
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
a760b03d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
include/linux/sunrpc/cache.h
include/linux/sunrpc/cache.h
+1
-1
include/linux/sunrpc/rpc_pipe_fs.h
include/linux/sunrpc/rpc_pipe_fs.h
+1
-1
net/sunrpc/cache.c
net/sunrpc/cache.c
+1
-1
net/sunrpc/rpc_pipe.c
net/sunrpc/rpc_pipe.c
+1
-1
No files found.
include/linux/sunrpc/cache.h
View file @
64f1426f
...
...
@@ -203,7 +203,7 @@ extern void cache_unregister(struct cache_detail *cd);
extern
void
cache_unregister_net
(
struct
cache_detail
*
cd
,
struct
net
*
net
);
extern
int
sunrpc_cache_register_pipefs
(
struct
dentry
*
parent
,
const
char
*
,
mode_t
,
struct
cache_detail
*
);
u
mode_t
,
struct
cache_detail
*
);
extern
void
sunrpc_cache_unregister_pipefs
(
struct
cache_detail
*
);
extern
void
qword_add
(
char
**
bpp
,
int
*
lp
,
char
*
str
);
...
...
include/linux/sunrpc/rpc_pipe_fs.h
View file @
64f1426f
...
...
@@ -55,7 +55,7 @@ extern int rpc_remove_client_dir(struct dentry *);
struct
cache_detail
;
extern
struct
dentry
*
rpc_create_cache_dir
(
struct
dentry
*
,
struct
qstr
*
,
mode_t
umode
,
u
mode_t
umode
,
struct
cache_detail
*
);
extern
void
rpc_remove_cache_dir
(
struct
dentry
*
);
...
...
net/sunrpc/cache.c
View file @
64f1426f
...
...
@@ -1778,7 +1778,7 @@ const struct file_operations cache_flush_operations_pipefs = {
};
int
sunrpc_cache_register_pipefs
(
struct
dentry
*
parent
,
const
char
*
name
,
mode_t
umode
,
const
char
*
name
,
u
mode_t
umode
,
struct
cache_detail
*
cd
)
{
struct
qstr
q
;
...
...
net/sunrpc/rpc_pipe.c
View file @
64f1426f
...
...
@@ -953,7 +953,7 @@ static void rpc_cachedir_depopulate(struct dentry *dentry)
}
struct
dentry
*
rpc_create_cache_dir
(
struct
dentry
*
parent
,
struct
qstr
*
name
,
mode_t
umode
,
struct
cache_detail
*
cd
)
u
mode_t
umode
,
struct
cache_detail
*
cd
)
{
return
rpc_mkdir_populate
(
parent
,
name
,
umode
,
NULL
,
rpc_cachedir_populate
,
cd
);
...
...
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