summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKay Sievers <kay@vrfy.org>2013-07-24 18:19:09 +0200
committerKay Sievers <kay@vrfy.org>2013-07-24 18:19:59 +0200
commit5b715f2876db14c485e6f51012af0d87e81b166d (patch)
treee5bf253359aa2f65d4ed2ae10a88161d2bc4ccb1
parent0fdef494d5fecf3df1f9e6901934cba66a045976 (diff)
downloadkdbus-bus-5b715f2876db14c485e6f51012af0d87e81b166d.tar.gz
kdbus-bus-5b715f2876db14c485e6f51012af0d87e81b166d.tar.bz2
kdbus-bus-5b715f2876db14c485e6f51012af0d87e81b166d.zip
use hierarchy == 2 for now
-rw-r--r--TODO4
-rw-r--r--message.c2
2 files changed, 1 insertions, 5 deletions
diff --git a/TODO b/TODO
index e8ec0db6f60..1a969e01c96 100644
--- a/TODO
+++ b/TODO
@@ -6,7 +6,3 @@ Internal:
kernel memory anymore
- memfd's file pos is shared, which can be confusing, document pread/pwrite
- conn->ep->bus ==> conn->bus
-
-Kernel Core:
- - remove our own task_cgroup_path_from_hierarchy() as soon as it's available:
- http://git.kernel.org/cgit/linux/kernel/git/tj/cgroup.git/commit/?h=review-task_cgroup_path_from_hierarchy
diff --git a/message.c b/message.c
index e66e61cb3e1..1a02494de3c 100644
--- a/message.c
+++ b/message.c
@@ -579,7 +579,7 @@ int kdbus_kmsg_append_meta(struct kdbus_kmsg *kmsg,
if (!tmp)
return -ENOMEM;
- ret = task_cgroup_path_from_hierarchy(current, 0, tmp, PAGE_SIZE);
+ ret = task_cgroup_path_from_hierarchy(current, 2, tmp, PAGE_SIZE);
if (ret >= 0)
ret = kdbus_kmsg_append_str(kmsg, KDBUS_MSG_SRC_CGROUP, tmp);