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
28444a2b
Commit
28444a2b
authored
Jan 29, 2015
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configfs_add_file: fold into its sole caller
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
1cf97d0d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
19 deletions
+10
-19
fs/configfs/configfs_internal.h
fs/configfs/configfs_internal.h
+0
-1
fs/configfs/file.c
fs/configfs/file.c
+10
-18
No files found.
fs/configfs/configfs_internal.h
View file @
28444a2b
...
...
@@ -76,7 +76,6 @@ extern int configfs_make_dirent(struct configfs_dirent *,
struct
dentry
*
,
void
*
,
umode_t
,
int
);
extern
int
configfs_dirent_is_ready
(
struct
configfs_dirent
*
);
extern
int
configfs_add_file
(
struct
dentry
*
,
const
struct
configfs_attribute
*
,
int
);
extern
void
configfs_hash_and_remove
(
struct
dentry
*
dir
,
const
char
*
name
);
extern
const
unsigned
char
*
configfs_get_name
(
struct
configfs_dirent
*
sd
);
...
...
fs/configfs/file.c
View file @
28444a2b
...
...
@@ -313,21 +313,6 @@ const struct file_operations configfs_file_operations = {
.
release
=
configfs_release
,
};
int
configfs_add_file
(
struct
dentry
*
dir
,
const
struct
configfs_attribute
*
attr
,
int
type
)
{
struct
configfs_dirent
*
parent_sd
=
dir
->
d_fsdata
;
umode_t
mode
=
(
attr
->
ca_mode
&
S_IALLUGO
)
|
S_IFREG
;
int
error
=
0
;
mutex_lock_nested
(
&
dir
->
d_inode
->
i_mutex
,
I_MUTEX_NORMAL
);
error
=
configfs_make_dirent
(
parent_sd
,
NULL
,
(
void
*
)
attr
,
mode
,
type
);
mutex_unlock
(
&
dir
->
d_inode
->
i_mutex
);
return
error
;
}
/**
* configfs_create_file - create an attribute file for an item.
* @item: item we're creating for.
...
...
@@ -336,9 +321,16 @@ int configfs_add_file(struct dentry * dir, const struct configfs_attribute * att
int
configfs_create_file
(
struct
config_item
*
item
,
const
struct
configfs_attribute
*
attr
)
{
BUG_ON
(
!
item
||
!
item
->
ci_dentry
||
!
attr
);
struct
dentry
*
dir
=
item
->
ci_dentry
;
struct
configfs_dirent
*
parent_sd
=
dir
->
d_fsdata
;
umode_t
mode
=
(
attr
->
ca_mode
&
S_IALLUGO
)
|
S_IFREG
;
int
error
=
0
;
return
configfs_add_file
(
item
->
ci_dentry
,
attr
,
CONFIGFS_ITEM_ATTR
);
mutex_lock_nested
(
&
dir
->
d_inode
->
i_mutex
,
I_MUTEX_NORMAL
);
error
=
configfs_make_dirent
(
parent_sd
,
NULL
,
(
void
*
)
attr
,
mode
,
CONFIGFS_ITEM_ATTR
);
mutex_unlock
(
&
dir
->
d_inode
->
i_mutex
);
return
error
;
}
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