-
Notifications
You must be signed in to change notification settings - Fork 557
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
config-linux: Update links to cgroups documentation #318
Conversation
* **`path`** *(string, required)* - full path to device inside container. | ||
* **`major, minor`** *(int64, required)* - [major, minor numbers][devices] for the device. | ||
* **`fileMode`** *(uint32, required)* - file mode for the device. | ||
You can also control access to devices [with cgroups](#device-whitelist). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are all the fields required?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On Wed, Jan 27, 2016 at 12:44:58PM -0800, Vish Kannan wrote:
- You can also control access to devices with cgroups.
Are all the fields required?
The change's you are commenting on are part of #298 1. If you want
to review this PR before #298 lands, you probably just want to look at
the tip commit 2.
a722d32
to
01e5ed1
Compare
01e5ed1
to
22e2e3b
Compare
With 34a9304a (Merge branch 'for-4.5' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup, 2016-01-13, [1]), Linux restructured their cgroups documentation. This updated all of our Documentation/cgroups references to match the new layout, using reference-style links [2] which let us collect link label definitions at the bottom of the file. That makes the spec source easier to read (no distracting URLs in the middle of a sentence) and makes the URLs easier to update (only one place to check / fix). [1]: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=34a9304a96d6351c2d35dcdc9293258378fc0bd8 [2]: http://daringfireball.net/projects/markdown/syntax#link Signed-off-by: W. Trevor King <[email protected]>
22e2e3b
to
1b0056c
Compare
LGTM |
1 similar comment
LGTM |
config-linux: Update links to cgroups documentation
With 34a9304a (Merge branch 'for-4.5' of
git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup, 2016-01-13),
Linux restructured their cgroups documentation. This updated all of
our Documentation/cgroups references to match the new layout, using
reference-style links which let us collect link label definitions
at the bottom of the file. That makes the spec source easier to read
(no distracting URLs in the middle of a sentence) and makes the URLs
easier to update (only one place to check / fix).
This builds on #298, so that PR should land first.