mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-10 07:10:27 +00:00
gfs2: switch to ->iterate_shared()
protected by glock and already used without locking the directory by gfs2_get_name() Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
e77d0c63f0
commit
1d1bb236bc
@ -1119,7 +1119,7 @@ const struct file_operations gfs2_file_fops = {
|
||||
};
|
||||
|
||||
const struct file_operations gfs2_dir_fops = {
|
||||
.iterate = gfs2_readdir,
|
||||
.iterate_shared = gfs2_readdir,
|
||||
.unlocked_ioctl = gfs2_ioctl,
|
||||
.open = gfs2_open,
|
||||
.release = gfs2_release,
|
||||
@ -1147,7 +1147,7 @@ const struct file_operations gfs2_file_fops_nolock = {
|
||||
};
|
||||
|
||||
const struct file_operations gfs2_dir_fops_nolock = {
|
||||
.iterate = gfs2_readdir,
|
||||
.iterate_shared = gfs2_readdir,
|
||||
.unlocked_ioctl = gfs2_ioctl,
|
||||
.open = gfs2_open,
|
||||
.release = gfs2_release,
|
||||
|
Loading…
x
Reference in New Issue
Block a user