dect
/
linux-2.6
Archived
13
0
Fork 0

cgroup: set 'start' with the right value in cgroup_path.

'start' is set to buf + buflen and do the '--' immediately.
Just set it to 'buf + buflen - 1' directly.

Signed-off-by: Tao Ma <boyu.mt@taobao.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Li Zefan <lizefan@huawei.com>
This commit is contained in:
Tao Ma 2012-11-08 21:36:38 +08:00 committed by Tejun Heo
parent 4b1c7840b7
commit 316eb661f1
1 changed files with 2 additions and 2 deletions

View File

@ -1770,9 +1770,9 @@ int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
return 0;
}
start = buf + buflen;
start = buf + buflen - 1;
*--start = '\0';
*start = '\0';
for (;;) {
int len = dentry->d_name.len;