[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20060928164808.87a9fa18.pj@sgi.com>
Date: Thu, 28 Sep 2006 16:48:08 -0700
From: Paul Jackson <pj@....com>
To: menage@...gle.com
Cc: akpm@...l.org, ckrm-tech@...ts.sourceforge.net, mbligh@...gle.com,
rohitseth@...gle.com, winget@...gle.com, dev@...ru,
sekharan@...ibm.com, linux-kernel@...r.kernel.org
Subject: Re: [RFC][PATCH 2/4] Cpusets hooked into containers
Menage wrote:
> +#ifdef CONFIG_CPUSETS
> + err = cpuset_create(cont);
> + if (err) goto err_unlock_free;
> +#endif
I believe recommended kernel style puts the if() statement
on a separate line, as in:
+#ifdef CONFIG_CPUSETS
+ err = cpuset_create(cont);
+ if (err)
+ goto err_unlock_free;
+#endif
--
I won't rest till it's the best ...
Programmer, Linux Scalability
Paul Jackson <pj@....com> 1.925.600.0401
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists