Try to reword
This commit is contained in:
parent
f43635d645
commit
76d38f5cfb
1 changed files with 3 additions and 3 deletions
|
@ -100,7 +100,7 @@ Indeed, the following directive will do nothing:
|
||||||
lxc.mount.entry = cgroup:mixed
|
lxc.mount.entry = cgroup:mixed
|
||||||
```
|
```
|
||||||
|
|
||||||
Here is why in the code:
|
Here is a fragment of the function that handle the previous directive, we directly exit the function before running anything when cgroup namespaces are supported:
|
||||||
|
|
||||||
```c
|
```c
|
||||||
/*
|
/*
|
||||||
|
@ -111,8 +111,8 @@ static bool cgfsng_mount(void *hdata, const char *root, int type)
|
||||||
{
|
{
|
||||||
/* some initializations */
|
/* some initializations */
|
||||||
if (cgns_supported())
|
if (cgns_supported())
|
||||||
return true;
|
return true; /* we exit the function here */
|
||||||
/* rest of the function */
|
/* rest of the function that will never be executed */
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue