All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-trivial] [PATCH v2] CODING_STYLE: Define our preferred form for multiline comments
@ 2018-06-11 14:17 ` Peter Maydell
  0 siblings, 0 replies; 46+ 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] 46+ messages in thread

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

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.