Re: [PATCH v3 1/6] memcg: fix error code in hugetlb_force_memcg_empty()
From: Tejun Heo <hidden>
Date: 2012-05-14 18:32:25
Also in:
linux-mm, lkml
From: Tejun Heo <hidden>
Date: 2012-05-14 18:32:25
Also in:
linux-mm, lkml
On Mon, May 14, 2012 at 11:15:56AM -0700, Tejun Heo wrote:
On Fri, May 11, 2012 at 06:45:18PM +0900, KAMEZAWA Hiroyuki wrote:quoted
- if (cgroup_task_count(cgroup) || !list_empty(&cgroup->children)) + if (cgroup_task_count(cgroup) + || !list_empty(&cgroup->children)) { + ret = -EBUSY; goto out;Why break the line? It doesn't go over 80 col.
Ooh, it does. Sorry, my bad. But still, isn't it more usual to leave
the operator in the preceding line and align the start of the second
line with the first? ie.
if (cgroup_task_count(cgroup) ||
!list_empty(&cgroup->children)) {
Thanks.
--
tejun