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
ceaec15d
Commit
ceaec15d
authored
Sep 17, 2013
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
9p: make v9fs_cache_inode_{get,put,set}_cookie empty inlines for !9P_CACHEFS
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
d0e639c9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
12 deletions
+12
-12
fs/9p/cache.h
fs/9p/cache.h
+12
-0
fs/9p/vfs_file.c
fs/9p/vfs_file.c
+0
-2
fs/9p/vfs_inode.c
fs/9p/vfs_inode.c
+0
-6
fs/9p/vfs_inode_dotl.c
fs/9p/vfs_inode_dotl.c
+0
-4
No files found.
fs/9p/cache.h
View file @
ceaec15d
...
...
@@ -101,6 +101,18 @@ static inline void v9fs_fscache_wait_on_page_write(struct inode *inode,
#else
/* CONFIG_9P_FSCACHE */
static
inline
void
v9fs_cache_inode_get_cookie
(
struct
inode
*
inode
)
{
}
static
inline
void
v9fs_cache_inode_put_cookie
(
struct
inode
*
inode
)
{
}
static
inline
void
v9fs_cache_inode_set_cookie
(
struct
inode
*
inode
,
struct
file
*
file
)
{
}
static
inline
int
v9fs_fscache_release_page
(
struct
page
*
page
,
gfp_t
gfp
)
{
return
1
;
...
...
fs/9p/vfs_file.c
View file @
ceaec15d
...
...
@@ -105,10 +105,8 @@ int v9fs_file_open(struct inode *inode, struct file *file)
v9inode
->
writeback_fid
=
(
void
*
)
fid
;
}
mutex_unlock
(
&
v9inode
->
v_mutex
);
#ifdef CONFIG_9P_FSCACHE
if
(
v9ses
->
cache
)
v9fs_cache_inode_set_cookie
(
inode
,
file
);
#endif
return
0
;
out_error:
p9_client_clunk
(
file
->
private_data
);
...
...
fs/9p/vfs_inode.c
View file @
ceaec15d
...
...
@@ -448,9 +448,7 @@ void v9fs_evict_inode(struct inode *inode)
clear_inode
(
inode
);
filemap_fdatawrite
(
inode
->
i_mapping
);
#ifdef CONFIG_9P_FSCACHE
v9fs_cache_inode_put_cookie
(
inode
);
#endif
/* clunk the fid stashed in writeback_fid */
if
(
v9inode
->
writeback_fid
)
{
p9_client_clunk
(
v9inode
->
writeback_fid
);
...
...
@@ -531,9 +529,7 @@ static struct inode *v9fs_qid_iget(struct super_block *sb,
goto
error
;
v9fs_stat2inode
(
st
,
inode
,
sb
);
#ifdef CONFIG_9P_FSCACHE
v9fs_cache_inode_get_cookie
(
inode
);
#endif
unlock_new_inode
(
inode
);
return
inode
;
error:
...
...
@@ -905,10 +901,8 @@ v9fs_vfs_atomic_open(struct inode *dir, struct dentry *dentry,
goto
error
;
file
->
private_data
=
fid
;
#ifdef CONFIG_9P_FSCACHE
if
(
v9ses
->
cache
)
v9fs_cache_inode_set_cookie
(
dentry
->
d_inode
,
file
);
#endif
*
opened
|=
FILE_CREATED
;
out:
...
...
fs/9p/vfs_inode_dotl.c
View file @
ceaec15d
...
...
@@ -141,9 +141,7 @@ static struct inode *v9fs_qid_iget_dotl(struct super_block *sb,
goto
error
;
v9fs_stat2inode_dotl
(
st
,
inode
);
#ifdef CONFIG_9P_FSCACHE
v9fs_cache_inode_get_cookie
(
inode
);
#endif
retval
=
v9fs_get_acl
(
inode
,
fid
);
if
(
retval
)
goto
error
;
...
...
@@ -355,10 +353,8 @@ v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
if
(
err
)
goto
err_clunk_old_fid
;
file
->
private_data
=
ofid
;
#ifdef CONFIG_9P_FSCACHE
if
(
v9ses
->
cache
)
v9fs_cache_inode_set_cookie
(
inode
,
file
);
#endif
*
opened
|=
FILE_CREATED
;
out:
v9fs_put_acl
(
dacl
,
pacl
);
...
...
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