summaryrefslogtreecommitdiffstats
path: root/include/linux/cgroup-defs.h
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2019-06-10 05:35:41 -0400
committerJens Axboe <axboe@kernel.dk>2019-06-10 05:35:41 -0400
commitcf8929885de318c0bf73438c9e5dde59d6536f7c (patch)
tree70e8a22308b033b9b2200d263cda09fddab6d394 /include/linux/cgroup-defs.h
parentd1fdb6d8f6a4109a4263176c84b899076a5f8008 (diff)
cgroup/bfq: revert bfq.weight symlink change
There's some discussion on how to do this the best, and Tejun prefers that BFQ just create the file itself instead of having cgroups support a symlink feature. Hence revert commit 54b7b868e826 and 19e9da9e86c4 for 5.2, and this can be done properly for 5.3. Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/linux/cgroup-defs.h')
-rw-r--r--include/linux/cgroup-defs.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/cgroup-defs.h b/include/linux/cgroup-defs.h
index d71b079bb021..11e215d7937e 100644
--- a/include/linux/cgroup-defs.h
+++ b/include/linux/cgroup-defs.h
@@ -106,8 +106,6 @@ enum {
106 CFTYPE_WORLD_WRITABLE = (1 << 4), /* (DON'T USE FOR NEW FILES) S_IWUGO */ 106 CFTYPE_WORLD_WRITABLE = (1 << 4), /* (DON'T USE FOR NEW FILES) S_IWUGO */
107 CFTYPE_DEBUG = (1 << 5), /* create when cgroup_debug */ 107 CFTYPE_DEBUG = (1 << 5), /* create when cgroup_debug */
108 108
109 CFTYPE_SYMLINKED = (1 << 6), /* pointed to by symlink too */
110
111 /* internal flags, do not use outside cgroup core proper */ 109 /* internal flags, do not use outside cgroup core proper */
112 __CFTYPE_ONLY_ON_DFL = (1 << 16), /* only on default hierarchy */ 110 __CFTYPE_ONLY_ON_DFL = (1 << 16), /* only on default hierarchy */
113 __CFTYPE_NOT_ON_DFL = (1 << 17), /* not on default hierarchy */ 111 __CFTYPE_NOT_ON_DFL = (1 << 17), /* not on default hierarchy */
@@ -545,7 +543,6 @@ struct cftype {
545 * end of cftype array. 543 * end of cftype array.
546 */ 544 */
547 char name[MAX_CFTYPE_NAME]; 545 char name[MAX_CFTYPE_NAME];
548 char link_name[MAX_CFTYPE_NAME];
549 unsigned long private; 546 unsigned long private;
550 547
551 /* 548 /*