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
5963ded8
Commit
5963ded8
authored
May 01, 2016
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
9p: switch to ->iterate_shared()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
98d4b8d8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
fs/9p/vfs_dir.c
fs/9p/vfs_dir.c
+2
-2
No files found.
fs/9p/vfs_dir.c
View file @
5963ded8
...
@@ -246,7 +246,7 @@ int v9fs_dir_release(struct inode *inode, struct file *filp)
...
@@ -246,7 +246,7 @@ int v9fs_dir_release(struct inode *inode, struct file *filp)
const
struct
file_operations
v9fs_dir_operations
=
{
const
struct
file_operations
v9fs_dir_operations
=
{
.
read
=
generic_read_dir
,
.
read
=
generic_read_dir
,
.
llseek
=
generic_file_llseek
,
.
llseek
=
generic_file_llseek
,
.
iterate
=
v9fs_dir_readdir
,
.
iterate
_shared
=
v9fs_dir_readdir
,
.
open
=
v9fs_file_open
,
.
open
=
v9fs_file_open
,
.
release
=
v9fs_dir_release
,
.
release
=
v9fs_dir_release
,
};
};
...
@@ -254,7 +254,7 @@ const struct file_operations v9fs_dir_operations = {
...
@@ -254,7 +254,7 @@ const struct file_operations v9fs_dir_operations = {
const
struct
file_operations
v9fs_dir_operations_dotl
=
{
const
struct
file_operations
v9fs_dir_operations_dotl
=
{
.
read
=
generic_read_dir
,
.
read
=
generic_read_dir
,
.
llseek
=
generic_file_llseek
,
.
llseek
=
generic_file_llseek
,
.
iterate
=
v9fs_dir_readdir_dotl
,
.
iterate
_shared
=
v9fs_dir_readdir_dotl
,
.
open
=
v9fs_file_open
,
.
open
=
v9fs_file_open
,
.
release
=
v9fs_dir_release
,
.
release
=
v9fs_dir_release
,
.
fsync
=
v9fs_file_fsync_dotl
,
.
fsync
=
v9fs_file_fsync_dotl
,
...
...
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