* Re: [PATCH 5/6] memcg: fix broken boolen expression [not found] ` <20111226153138.0376bd66.kamezawa.hiroyu@jp.fujitsu.com> @ 2011-12-26 6:57 ` Kirill A. Shutemov 2012-01-03 20:54 ` Greg KH 0 siblings, 1 reply; 2+ messages in thread From: Kirill A. Shutemov @ 2011-12-26 6:57 UTC (permalink / raw) To: KAMEZAWA Hiroyuki Cc: linux-mm, cgroups, linux-kernel, containers, Balbir Singh, Michal Hocko, Johannes Weiner, stable On Mon, Dec 26, 2011 at 03:31:38PM +0900, KAMEZAWA Hiroyuki wrote: > On Sat, 24 Dec 2011 05:00:18 +0200 > "Kirill A. Shutemov" <kirill@shutemov.name> wrote: > > > From: "Kirill A. Shutemov" <kirill@shutemov.name> > > > > action != CPU_DEAD || action != CPU_DEAD_FROZEN is always true. > > > > Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name> > > maybe this should go stable.. CC stable@ > > Acked-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> > > > > --- > > mm/memcontrol.c | 2 +- > > 1 files changed, 1 insertions(+), 1 deletions(-) > > > > diff --git a/mm/memcontrol.c b/mm/memcontrol.c > > index b27ce0f..3833a7b 100644 > > --- a/mm/memcontrol.c > > +++ b/mm/memcontrol.c > > @@ -2100,7 +2100,7 @@ static int __cpuinit memcg_cpu_hotplug_callback(struct notifier_block *nb, > > return NOTIFY_OK; > > } > > > > - if ((action != CPU_DEAD) || action != CPU_DEAD_FROZEN) > > + if (action != CPU_DEAD && action != CPU_DEAD_FROZEN) > > return NOTIFY_OK; > > > > for_each_mem_cgroup(iter) > > -- > > 1.7.7.3 > > > > -- > > To unsubscribe from this list: send the line "unsubscribe cgroups" in > > the body of a message to majordomo@vger.kernel.org > > More majordomo info at http://vger.kernel.org/majordomo-info.html > -- Kirill A. Shutemov ^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH 5/6] memcg: fix broken boolen expression 2011-12-26 6:57 ` [PATCH 5/6] memcg: fix broken boolen expression Kirill A. Shutemov @ 2012-01-03 20:54 ` Greg KH 0 siblings, 0 replies; 2+ messages in thread From: Greg KH @ 2012-01-03 20:54 UTC (permalink / raw) To: Kirill A. Shutemov Cc: KAMEZAWA Hiroyuki, linux-mm, cgroups, linux-kernel, containers, Balbir Singh, Michal Hocko, Johannes Weiner, stable On Mon, Dec 26, 2011 at 08:57:24AM +0200, Kirill A. Shutemov wrote: > On Mon, Dec 26, 2011 at 03:31:38PM +0900, KAMEZAWA Hiroyuki wrote: > > On Sat, 24 Dec 2011 05:00:18 +0200 > > "Kirill A. Shutemov" <kirill@shutemov.name> wrote: > > > > > From: "Kirill A. Shutemov" <kirill@shutemov.name> > > > > > > action != CPU_DEAD || action != CPU_DEAD_FROZEN is always true. > > > > > > Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name> > > > > maybe this should go stable.. > > CC stable@ <formletter> This is not the correct way to submit patches for inclusion in the stable kernel tree. Please read Documentation/stable_kernel_rules.txt for how to do this properly. </formletter> ^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-01-03 20:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1324695619-5537-1-git-send-email-kirill@shutemov.name>
[not found] ` <1324695619-5537-5-git-send-email-kirill@shutemov.name>
[not found] ` <20111226153138.0376bd66.kamezawa.hiroyu@jp.fujitsu.com>
2011-12-26 6:57 ` [PATCH 5/6] memcg: fix broken boolen expression Kirill A. Shutemov
2012-01-03 20:54 ` Greg KH
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox