Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
Linux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
E-EXK4 - Operating System Group
projects
Linux
Commits
0df4d6e5
Commit
0df4d6e5
authored
12 years ago
by
Al Viro
Browse files
Options
Downloads
Patches
Plain Diff
hugetlb_file_setup(): use d_alloc_pseudo()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
3451538a
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/hugetlbfs/inode.c
+15
-4
15 additions, 4 deletions
fs/hugetlbfs/inode.c
with
15 additions
and
4 deletions
fs/hugetlbfs/inode.c
+
15
−
4
View file @
0df4d6e5
...
@@ -918,6 +918,16 @@ static int get_hstate_idx(int page_size_log)
...
@@ -918,6 +918,16 @@ static int get_hstate_idx(int page_size_log)
return
h
-
hstates
;
return
h
-
hstates
;
}
}
static
char
*
hugetlb_dname
(
struct
dentry
*
dentry
,
char
*
buffer
,
int
buflen
)
{
return
dynamic_dname
(
dentry
,
buffer
,
buflen
,
"/%s (deleted)"
,
dentry
->
d_name
.
name
);
}
static
struct
dentry_operations
anon_ops
=
{
.
d_dname
=
hugetlb_dname
};
struct
file
*
hugetlb_file_setup
(
const
char
*
name
,
unsigned
long
addr
,
struct
file
*
hugetlb_file_setup
(
const
char
*
name
,
unsigned
long
addr
,
size_t
size
,
vm_flags_t
acctflag
,
size_t
size
,
vm_flags_t
acctflag
,
struct
user_struct
**
user
,
struct
user_struct
**
user
,
...
@@ -926,7 +936,7 @@ struct file *hugetlb_file_setup(const char *name, unsigned long addr,
...
@@ -926,7 +936,7 @@ struct file *hugetlb_file_setup(const char *name, unsigned long addr,
struct
file
*
file
=
ERR_PTR
(
-
ENOMEM
);
struct
file
*
file
=
ERR_PTR
(
-
ENOMEM
);
struct
inode
*
inode
;
struct
inode
*
inode
;
struct
path
path
;
struct
path
path
;
struct
dentry
*
root
;
struct
super_block
*
sb
;
struct
qstr
quick_string
;
struct
qstr
quick_string
;
struct
hstate
*
hstate
;
struct
hstate
*
hstate
;
unsigned
long
num_pages
;
unsigned
long
num_pages
;
...
@@ -954,17 +964,18 @@ struct file *hugetlb_file_setup(const char *name, unsigned long addr,
...
@@ -954,17 +964,18 @@ struct file *hugetlb_file_setup(const char *name, unsigned long addr,
}
}
}
}
root
=
hugetlbfs_vfsmount
[
hstate_idx
]
->
mnt_
root
;
sb
=
hugetlbfs_vfsmount
[
hstate_idx
]
->
mnt_
sb
;
quick_string
.
name
=
name
;
quick_string
.
name
=
name
;
quick_string
.
len
=
strlen
(
quick_string
.
name
);
quick_string
.
len
=
strlen
(
quick_string
.
name
);
quick_string
.
hash
=
0
;
quick_string
.
hash
=
0
;
path
.
dentry
=
d_alloc
(
root
,
&
quick_string
);
path
.
dentry
=
d_alloc
_pseudo
(
sb
,
&
quick_string
);
if
(
!
path
.
dentry
)
if
(
!
path
.
dentry
)
goto
out_shm_unlock
;
goto
out_shm_unlock
;
d_set_d_op
(
path
.
dentry
,
&
anon_ops
);
path
.
mnt
=
mntget
(
hugetlbfs_vfsmount
[
hstate_idx
]);
path
.
mnt
=
mntget
(
hugetlbfs_vfsmount
[
hstate_idx
]);
file
=
ERR_PTR
(
-
ENOSPC
);
file
=
ERR_PTR
(
-
ENOSPC
);
inode
=
hugetlbfs_get_inode
(
root
->
d_
sb
,
NULL
,
S_IFREG
|
S_IRWXUGO
,
0
);
inode
=
hugetlbfs_get_inode
(
sb
,
NULL
,
S_IFREG
|
S_IRWXUGO
,
0
);
if
(
!
inode
)
if
(
!
inode
)
goto
out_dentry
;
goto
out_dentry
;
...
...
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