Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
4b42af81
Commit
4b42af81
authored
Aug 05, 2009
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
switch shmem_file_setup() to alloc_file()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
853b3da1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
12 deletions
+9
-12
mm/shmem.c
mm/shmem.c
+9
-12
No files found.
mm/shmem.c
View file @
4b42af81
...
@@ -2647,32 +2647,29 @@ struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags
...
@@ -2647,32 +2647,29 @@ struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags
if
(
!
dentry
)
if
(
!
dentry
)
goto
put_memory
;
goto
put_memory
;
error
=
-
ENFILE
;
file
=
get_empty_filp
();
if
(
!
file
)
goto
put_dentry
;
error
=
-
ENOSPC
;
error
=
-
ENOSPC
;
inode
=
shmem_get_inode
(
root
->
d_sb
,
S_IFREG
|
S_IRWXUGO
,
0
,
flags
);
inode
=
shmem_get_inode
(
root
->
d_sb
,
S_IFREG
|
S_IRWXUGO
,
0
,
flags
);
if
(
!
inode
)
if
(
!
inode
)
goto
close_file
;
goto
put_dentry
;
d_instantiate
(
dentry
,
inode
);
d_instantiate
(
dentry
,
inode
);
inode
->
i_size
=
size
;
inode
->
i_size
=
size
;
inode
->
i_nlink
=
0
;
/* It is unlinked */
inode
->
i_nlink
=
0
;
/* It is unlinked */
init_file
(
file
,
shm_mnt
,
dentry
,
FMODE_WRITE
|
FMODE_READ
,
&
shmem_file_operations
);
#ifndef CONFIG_MMU
#ifndef CONFIG_MMU
error
=
ramfs_nommu_expand_for_mapping
(
inode
,
size
);
error
=
ramfs_nommu_expand_for_mapping
(
inode
,
size
);
if
(
error
)
if
(
error
)
goto
close_file
;
goto
put_dentry
;
#endif
#endif
error
=
-
ENFILE
;
file
=
alloc_file
(
shm_mnt
,
dentry
,
FMODE_WRITE
|
FMODE_READ
,
&
shmem_file_operations
);
if
(
!
file
)
goto
put_dentry
;
ima_counts_get
(
file
);
ima_counts_get
(
file
);
return
file
;
return
file
;
close_file:
put_filp
(
file
);
put_dentry:
put_dentry:
dput
(
dentry
);
dput
(
dentry
);
put_memory:
put_memory:
...
...
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