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
Kirill Smelkov
linux
Commits
786e1448
Commit
786e1448
authored
Jul 14, 2013
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cgroup: we can use simple_lookup() now
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
6e8cd2cb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
10 deletions
+1
-10
kernel/cgroup.c
kernel/cgroup.c
+1
-10
No files found.
kernel/cgroup.c
View file @
786e1448
...
@@ -802,7 +802,6 @@ static struct cgroup *task_cgroup_from_root(struct task_struct *task,
...
@@ -802,7 +802,6 @@ static struct cgroup *task_cgroup_from_root(struct task_struct *task,
*/
*/
static
int
cgroup_mkdir
(
struct
inode
*
dir
,
struct
dentry
*
dentry
,
umode_t
mode
);
static
int
cgroup_mkdir
(
struct
inode
*
dir
,
struct
dentry
*
dentry
,
umode_t
mode
);
static
struct
dentry
*
cgroup_lookup
(
struct
inode
*
,
struct
dentry
*
,
unsigned
int
);
static
int
cgroup_rmdir
(
struct
inode
*
unused_dir
,
struct
dentry
*
dentry
);
static
int
cgroup_rmdir
(
struct
inode
*
unused_dir
,
struct
dentry
*
dentry
);
static
int
cgroup_populate_dir
(
struct
cgroup
*
cgrp
,
bool
base_files
,
static
int
cgroup_populate_dir
(
struct
cgroup
*
cgrp
,
bool
base_files
,
unsigned
long
subsys_mask
);
unsigned
long
subsys_mask
);
...
@@ -2642,7 +2641,7 @@ static const struct inode_operations cgroup_file_inode_operations = {
...
@@ -2642,7 +2641,7 @@ static const struct inode_operations cgroup_file_inode_operations = {
};
};
static
const
struct
inode_operations
cgroup_dir_inode_operations
=
{
static
const
struct
inode_operations
cgroup_dir_inode_operations
=
{
.
lookup
=
cgroup
_lookup
,
.
lookup
=
simple
_lookup
,
.
mkdir
=
cgroup_mkdir
,
.
mkdir
=
cgroup_mkdir
,
.
rmdir
=
cgroup_rmdir
,
.
rmdir
=
cgroup_rmdir
,
.
rename
=
cgroup_rename
,
.
rename
=
cgroup_rename
,
...
@@ -2652,14 +2651,6 @@ static const struct inode_operations cgroup_dir_inode_operations = {
...
@@ -2652,14 +2651,6 @@ static const struct inode_operations cgroup_dir_inode_operations = {
.
removexattr
=
cgroup_removexattr
,
.
removexattr
=
cgroup_removexattr
,
};
};
static
struct
dentry
*
cgroup_lookup
(
struct
inode
*
dir
,
struct
dentry
*
dentry
,
unsigned
int
flags
)
{
if
(
dentry
->
d_name
.
len
>
NAME_MAX
)
return
ERR_PTR
(
-
ENAMETOOLONG
);
d_add
(
dentry
,
NULL
);
return
NULL
;
}
/*
/*
* Check if a file is a control file
* Check if a file is a control file
*/
*/
...
...
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