Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
linux-seco-imx
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Jira
Code
Merge requests
11
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Clea OS
bsp
nxp
linux-seco-imx
Commits
2a027e7a
Commit
2a027e7a
authored
12 years ago
by
Al Viro
Browse files
Options
Downloads
Patches
Plain Diff
fold __dentry_open() into its sole caller
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
96b7e579
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fs/open.c
+12
-21
12 additions, 21 deletions
fs/open.c
with
12 additions
and
21 deletions
fs/open.c
+
12
−
21
View file @
2a027e7a
...
...
@@ -752,26 +752,6 @@ cleanup_file:
return
error
;
}
static
struct
file
*
__dentry_open
(
struct
dentry
*
dentry
,
struct
vfsmount
*
mnt
,
struct
file
*
f
,
int
(
*
open
)(
struct
inode
*
,
struct
file
*
),
const
struct
cred
*
cred
)
{
int
error
;
error
=
do_dentry_open
(
dentry
,
mnt
,
f
,
open
,
cred
);
if
(
!
error
)
{
error
=
open_check_o_direct
(
f
);
if
(
error
)
{
fput
(
f
);
f
=
ERR_PTR
(
error
);
}
}
else
{
put_filp
(
f
);
f
=
ERR_PTR
(
error
);
}
return
f
;
}
/**
* finish_open - finish opening a file
* @od: opaque open data
...
...
@@ -841,7 +821,18 @@ struct file *dentry_open(struct dentry *dentry, struct vfsmount *mnt, int flags,
}
f
->
f_flags
=
flags
;
return
__dentry_open
(
dentry
,
mnt
,
f
,
NULL
,
cred
);
error
=
do_dentry_open
(
dentry
,
mnt
,
f
,
NULL
,
cred
);
if
(
!
error
)
{
error
=
open_check_o_direct
(
f
);
if
(
error
)
{
fput
(
f
);
f
=
ERR_PTR
(
error
);
}
}
else
{
put_filp
(
f
);
f
=
ERR_PTR
(
error
);
}
return
f
;
}
EXPORT_SYMBOL
(
dentry_open
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment