qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2] CODING_STYLE: Define our preferred form for multiline comments
@ 2018-06-11 14:17 Peter Maydell
  2018-06-11 14:21 ` Eric Blake
                   ` (7 more replies)
  0 siblings, 8 replies; 23+ messages in thread
From: Peter Maydell @ 2018-06-11 14:17 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial
  Cc: patches, Richard Henderson, John Snow,
	Philippe Mathieu-Daudé, Alex Williamson, Thomas Huth,
	Cornelia Huck, Markus Armbruster, Stefan Hajnoczi, Kevin Wolf

The codebase has a bit of a mix of different multiline
comment styles. State a preference for the Linux kernel
style:
    /*
     * Star on the left for each line.
     * Leading slash-star and trailing star-slash
     * each go on a line of their own.
     */

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
This is not my personal favourite, but seemed to be the
closest we had to consensus in the mail thread for v1;
I can live with it in order to avoid getting patches which
use the styles I like even less :-)
---
 CODING_STYLE | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/CODING_STYLE b/CODING_STYLE
index 12ba58ee293..2d84f5f26d1 100644
--- a/CODING_STYLE
+++ b/CODING_STYLE
@@ -124,6 +124,23 @@ We use traditional C-style /* */ comments and avoid // comments.
 Rationale: The // form is valid in C99, so this is purely a matter of
 consistency of style. The checkpatch script will warn you about this.
 
+Multiline comments blocks should have a row of stars on the left,
+and the initial /* and terminating */ both on their own lines:
+    /*
+     * like
+     * this
+     */
+This is the same format required by the Linux kernel coding style.
+
+(Some of the existing comments in the codebase use the GNU Coding
+Standards form which does not have stars on the left, or other
+variations; avoid these when writing new comments, but don't worry
+about converting to the preferred form unless you're editing that
+comment anyway.)
+
+Rationale: Consistency, and ease of visually picking out a multiline
+comment from the surrounding code.
+
 8. trace-events style
 
 8.1 0x prefix
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2018-06-15 12:46 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-11 14:17 [Qemu-devel] [PATCH v2] CODING_STYLE: Define our preferred form for multiline comments Peter Maydell
2018-06-11 14:21 ` Eric Blake
2018-06-11 14:57 ` Cornelia Huck
2018-06-11 16:02 ` Markus Armbruster
2018-06-11 16:15 ` Alex Williamson
2018-06-11 16:40   ` Peter Maydell
2018-06-11 16:49     ` Alex Williamson
2018-06-11 16:24 ` Thomas Huth
2018-06-11 16:31 ` John Snow
2018-06-12 17:30 ` Richard Henderson
2018-06-12 17:41   ` Philippe Mathieu-Daudé
2018-06-12 18:12   ` Thomas Huth
2018-06-12 18:47     ` Alex Williamson
2018-06-13  7:05       ` Cornelia Huck
2018-06-13 12:30   ` Peter Maydell
2018-06-13 16:55     ` John Snow
2018-06-14 10:46       ` Peter Maydell
2018-06-14 20:11         ` John Snow
2018-06-15  2:52           ` Philippe Mathieu-Daudé
2018-06-15  4:43           ` Thomas Huth
2018-06-15  8:48             ` Peter Maydell
2018-06-15 12:45         ` Markus Armbruster
2018-06-13 13:31 ` Stefan Hajnoczi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).