Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lxc
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
lxc
Commits
9888a112
Unverified
Commit
9888a112
authored
Feb 17, 2018
by
Christian Brauner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cgfsng: cg_hybrid_get_controllers()
Signed-off-by:
Christian Brauner
<
christian.brauner@ubuntu.com
>
parent
a119b01d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
10 deletions
+12
-10
cgfsng.c
src/lxc/cgroups/cgfsng.c
+12
-10
No files found.
src/lxc/cgroups/cgfsng.c
View file @
9888a112
...
...
@@ -845,17 +845,17 @@ static bool all_controllers_found(void)
return
true
;
}
/*
* Get the controllers from a mountinfo line
* There are other ways we could get this info. For lxcfs, field 3
* is /cgroup/controller-list. For cgroupfs, we could parse the mount
* options. But we simply assume that the mountpoint must be
* /sys/fs/cgroup/controller-list
/* Get the controllers from a mountinfo line There are other ways we could get
* this info. For lxcfs, field 3 is /cgroup/controller-list. For cgroupfs, we
* could parse the mount options. But we simply assume that the mountpoint must
* be /sys/fs/cgroup/controller-list
*/
static
char
**
cg_hybrid_get_controllers
(
char
**
klist
,
char
**
nlist
,
char
*
line
,
int
type
)
{
/* the fourth field is /sys/fs/cgroup/comma-delimited-controller-list */
/* The fourth field is /sys/fs/cgroup/comma-delimited-controller-list
* for legacy hierarchies.
*/
int
i
;
char
*
dup
,
*
p2
,
*
tok
;
char
*
p
=
line
,
*
saveptr
=
NULL
,
*
sep
=
","
;
...
...
@@ -868,9 +868,10 @@ static char **cg_hybrid_get_controllers(char **klist, char **nlist, char *line,
p
++
;
}
/* note - if we change how mountinfo works, then our caller
* will need to verify /sys/fs/cgroup/ in this field */
if
(
strncmp
(
p
,
"/sys/fs/cgroup/"
,
15
))
{
/* Note, if we change how mountinfo works, then our caller will need to
* verify /sys/fs/cgroup/ in this field.
*/
if
(
strncmp
(
p
,
"/sys/fs/cgroup/"
,
15
)
!=
0
)
{
CGFSNG_DEBUG
(
"Found hierarchy not under /sys/fs/cgroup:
\"
%s
\"\n
"
,
p
);
return
NULL
;
}
...
...
@@ -898,6 +899,7 @@ static char **cg_hybrid_get_controllers(char **klist, char **nlist, char *line,
free
(
dup
);
}
*
p2
=
' '
;
return
aret
;
}
...
...
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