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
nexedi
linux
Commits
190afd81
Commit
190afd81
authored
Jan 25, 2015
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
debugfs: split the beginning and the end of __create_file() off
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
e09ddf36
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
22 deletions
+39
-22
fs/debugfs/inode.c
fs/debugfs/inode.c
+39
-22
No files found.
fs/debugfs/inode.c
View file @
190afd81
...
@@ -305,11 +305,9 @@ static struct file_system_type debug_fs_type = {
...
@@ -305,11 +305,9 @@ static struct file_system_type debug_fs_type = {
};
};
MODULE_ALIAS_FS
(
"debugfs"
);
MODULE_ALIAS_FS
(
"debugfs"
);
static
struct
dentry
*
__create_file
(
const
char
*
name
,
umode_t
mode
,
static
struct
dentry
*
start_creating
(
const
char
*
name
,
struct
dentry
*
parent
)
struct
dentry
*
parent
,
void
*
data
,
const
struct
file_operations
*
fops
)
{
{
struct
dentry
*
dentry
=
NULL
;
struct
dentry
*
dentry
;
int
error
;
int
error
;
pr_debug
(
"debugfs: creating file '%s'
\n
"
,
name
);
pr_debug
(
"debugfs: creating file '%s'
\n
"
,
name
);
...
@@ -317,7 +315,7 @@ static struct dentry *__create_file(const char *name, umode_t mode,
...
@@ -317,7 +315,7 @@ static struct dentry *__create_file(const char *name, umode_t mode,
error
=
simple_pin_fs
(
&
debug_fs_type
,
&
debugfs_mount
,
error
=
simple_pin_fs
(
&
debug_fs_type
,
&
debugfs_mount
,
&
debugfs_mount_count
);
&
debugfs_mount_count
);
if
(
error
)
if
(
error
)
goto
exit
;
return
ERR_PTR
(
error
)
;
/* If the parent is not specified, we create it in the root.
/* If the parent is not specified, we create it in the root.
* We need the root dentry to do this, which is in the super
* We need the root dentry to do this, which is in the super
...
@@ -329,32 +327,51 @@ static struct dentry *__create_file(const char *name, umode_t mode,
...
@@ -329,32 +327,51 @@ static struct dentry *__create_file(const char *name, umode_t mode,
mutex_lock
(
&
parent
->
d_inode
->
i_mutex
);
mutex_lock
(
&
parent
->
d_inode
->
i_mutex
);
dentry
=
lookup_one_len
(
name
,
parent
,
strlen
(
name
));
dentry
=
lookup_one_len
(
name
,
parent
,
strlen
(
name
));
if
(
!
IS_ERR
(
dentry
))
{
if
(
!
IS_ERR
(
dentry
)
&&
dentry
->
d_inode
)
{
switch
(
mode
&
S_IFMT
)
{
case
S_IFDIR
:
error
=
debugfs_mkdir
(
dentry
,
mode
);
break
;
case
S_IFLNK
:
error
=
debugfs_link
(
dentry
,
mode
,
data
);
break
;
default:
error
=
debugfs_create
(
dentry
,
mode
,
data
,
fops
);
break
;
}
dput
(
dentry
);
dput
(
dentry
);
}
else
dentry
=
ERR_PTR
(
-
EEXIST
);
error
=
PTR_ERR
(
dentry
);
}
mutex_unlock
(
&
parent
->
d_inode
->
i_mutex
);
if
(
IS_ERR
(
dentry
))
mutex_unlock
(
&
parent
->
d_inode
->
i_mutex
);
return
dentry
;
}
static
struct
dentry
*
end_creating
(
struct
dentry
*
dentry
,
int
error
)
{
mutex_unlock
(
&
dentry
->
d_parent
->
d_inode
->
i_mutex
);
dput
(
dentry
);
if
(
error
)
{
if
(
error
)
{
dentry
=
NULL
;
dentry
=
NULL
;
simple_release_fs
(
&
debugfs_mount
,
&
debugfs_mount_count
);
simple_release_fs
(
&
debugfs_mount
,
&
debugfs_mount_count
);
}
}
exit:
return
dentry
;
return
dentry
;
}
}
static
struct
dentry
*
__create_file
(
const
char
*
name
,
umode_t
mode
,
struct
dentry
*
parent
,
void
*
data
,
const
struct
file_operations
*
fops
)
{
struct
dentry
*
dentry
=
start_creating
(
name
,
parent
);
int
error
;
if
(
IS_ERR
(
dentry
))
return
NULL
;
switch
(
mode
&
S_IFMT
)
{
case
S_IFDIR
:
error
=
debugfs_mkdir
(
dentry
,
mode
);
break
;
case
S_IFLNK
:
error
=
debugfs_link
(
dentry
,
mode
,
data
);
break
;
default:
error
=
debugfs_create
(
dentry
,
mode
,
data
,
fops
);
break
;
}
return
end_creating
(
dentry
,
error
);
}
/**
/**
* debugfs_create_file - create a file in the debugfs filesystem
* debugfs_create_file - create a file in the debugfs filesystem
* @name: a pointer to a string containing the name of the file to create.
* @name: a pointer to a string containing the name of the file to create.
...
...
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