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
9024b4c9
Commit
9024b4c9
authored
Nov 12, 2023
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d_alloc_pseudo(): move setting ->d_op there from the (sole) caller
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
f2824db1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
fs/dcache.c
fs/dcache.c
+7
-1
fs/file_table.c
fs/file_table.c
+0
-5
No files found.
fs/dcache.c
View file @
9024b4c9
...
...
@@ -1890,9 +1890,15 @@ struct dentry *d_alloc_cursor(struct dentry * parent)
*/
struct
dentry
*
d_alloc_pseudo
(
struct
super_block
*
sb
,
const
struct
qstr
*
name
)
{
static
const
struct
dentry_operations
anon_ops
=
{
.
d_dname
=
simple_dname
};
struct
dentry
*
dentry
=
__d_alloc
(
sb
,
name
);
if
(
likely
(
dentry
))
if
(
likely
(
dentry
))
{
dentry
->
d_flags
|=
DCACHE_NORCU
;
if
(
!
sb
->
s_d_op
)
d_set_d_op
(
dentry
,
&
anon_ops
);
}
return
dentry
;
}
...
...
fs/file_table.c
View file @
9024b4c9
...
...
@@ -329,9 +329,6 @@ struct file *alloc_file_pseudo(struct inode *inode, struct vfsmount *mnt,
const
char
*
name
,
int
flags
,
const
struct
file_operations
*
fops
)
{
static
const
struct
dentry_operations
anon_ops
=
{
.
d_dname
=
simple_dname
};
struct
qstr
this
=
QSTR_INIT
(
name
,
strlen
(
name
));
struct
path
path
;
struct
file
*
file
;
...
...
@@ -339,8 +336,6 @@ struct file *alloc_file_pseudo(struct inode *inode, struct vfsmount *mnt,
path
.
dentry
=
d_alloc_pseudo
(
mnt
->
mnt_sb
,
&
this
);
if
(
!
path
.
dentry
)
return
ERR_PTR
(
-
ENOMEM
);
if
(
!
mnt
->
mnt_sb
->
s_d_op
)
d_set_d_op
(
path
.
dentry
,
&
anon_ops
);
path
.
mnt
=
mntget
(
mnt
);
d_instantiate
(
path
.
dentry
,
inode
);
file
=
alloc_file
(
&
path
,
flags
,
fops
);
...
...
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