Re: PATCH, RFC: Version 2 of 2.6 Codingstyle

From: Michael Frank (mhf_at_linuxmail.org)
Date: 02/13/04

  • Next message: Juan Piernas Canovas: "Re: ext2/3 performance regression in 2.6 vs 2.4 for small interleaved writes"
    To: linux kernel <linux-kernel@vger.kernel.org>
    Date:	Fri, 13 Feb 2004 16:49:30 +0800
    
    

    Thank you for your feedback which has been incorporated into this version.

    Changes:

    Appreciate that kernel developers are literate

    Added sggestions on inlines and enums

    Dropped chapter on parentheses

    Shortened things

    Some fixes

    Here is a diff against the previous version and a diff against the current
    in-kernel version is thereafter.

    Regards
    Michael

    --- Documentation/CodingStyle.mhf.orig.1 2004-02-13 06:05:11.000000000 +0800
    +++ Documentation/CodingStyle 2004-02-13 16:42:07.000000000 +0800
    @@ -35,29 +35,27 @@
     benefit of warning you when you're nesting your functions too deep.
     Heed that warning.
     
    -Note that perhaps the most terrible way to write code is to put multiple
    -statements onto a single line:
    +Don't put multiple statements on a single line unless you have
    +something to hide:
     
             if (condition) do_this;
    + do_something_everytime;
     
     Outside of comments and except in Kconfig, spaces are never used for
     indentation.
     
    -Lagging spaces are deprecated.
    +Don't leave whitespace at the end of lines.
    +
     
                     Chapter 2: Breaking long lines and strings
     
     Coding style is all about readability and maintainability using commonly
     available tools.
     
    -The limit on the length of lines is 80 columns and this is a hard limit.
    -
     Statements longer than 80 columns will be broken into sensible chunks.
    -The beginning of a statement is the parent and further chunks are
    -descendent's. Descendent's are always shorter than the parent and
    -are placed substantially to the right.
    -
    -Long strings are broken into smaller strings too.
    +Descendant's are always shorter than the parent and are placed substantially
    +to the right. The same applies to function headers with a long argument list.
    +Long strings are as well broken into smaller strings.
     
     void fun(int a, int b, int c)
     {
    @@ -65,12 +63,10 @@
                     printk(KERN_WARNING "Warning this is a long printk with "
                                                     "3 parameters a: %u b: %u "
                                                     "c: %u \n", a, b, c);
    - else
    + else
                     next_statement;
     }
     
    -This method makes it very obvious that the printk is a single statement.
    -
     
                     Chapter : Placing Braces
     
    @@ -190,7 +186,7 @@
     Albeit deprecated by some people, the goto statement is used frequently
     by compilers in form of the unconditional jump instruction.
     
    -The goto statement comes handy when a function exits from multiple
    +The goto statement comes in handy when a function exits from multiple
     locations and some common work such as cleanup has to be done.
     
     The rationale is:
    @@ -218,13 +214,7 @@
                     result = 1;
                     goto out;
             }
    - if (condition2) {
    - while (loop2) {
    - ...
    - }
    - result = 2;
    - goto out;
    - }
    + ...
     out:
             if (buffer)
                     kfree(buffer);
    @@ -348,23 +338,20 @@
     Remember: if another thread can find your data structure, and you don't
     have a reference count on it, you almost certainly have a bug.
     
    - Chapter : Parenthesis in expressions
    -
    -Complex expressions are easier to understand and maintain when extra
    -parenthesis are used. Here is an extreme example
     
    -x = (((a + (b * c)) & d) | e) // would work also without any parenthesis
    + Chapter : Inlines, Enums and Macros
     
    -
    - Chapter : Macros
    -
    -Macros defining constants are capitalized.
    +Macros defining constants and values in enums are capitalized.
     
     #define CONSTANT 0x12345
     
    +Enums are preferred when defining several related constants.
    +
     CAPITALIZED macro names are appreciated but macros resembling functions
     may be named in lower case.
     
    +Generally, inline functions are preferable to macros resembling functions.
    +
     Macros with multiple statements should be enclosed in a do - while block.
     
     #define macrofun(a,b,c) \
    @@ -374,23 +361,44 @@
                                             \
     } while (0)
     
    -Macros defining expressions must enclose the expression in parenthesis
    -to reduce sideeffects.
    +Things to avoid when doing macros:
     
    -#define CONSTEXP (CONSTANT | 3)
    -#define MACWEXP(a,b) ((a) + (b))
    +1) macros that affect control flow:
    +
    +#define FOO(x) \
    + do { \
    + if (blah(x) < 0) \
    + return -EBUGGERED; \
    + } while(0)
    +
    +is a _very_ bad idea. It looks like a function call but exits the "calling"
    +function; don't break the internal parsers of those who will read the code.
    +
    +2) macros that depend on having a local variable with magic name:
     
    +#define FOO(val) bar(index, val)
     
    - Chapter : printk formating
    +might look like a good thing, but it's confusing as hell when one reads the
    +code and it's prone to breakage from seemingly innocent changes.
    +
    +3) macros with arguments that are used as l-values: FOO(x) = y; will
    +bite you if somebody e.g. turns FOO into inlined function.
    +
    +4) forgetting about sideeffects. Macros defining expressions must enclose the
    +expression in parenthesis. Note that this does not eliminate all side effects.
    +
    +#define CONSTEXP (CONSTANT | 3)
    +#define MACWEXP(a,b) ((a) + (b))
     
    -Periods terminating kernel messages are deprecated
     
    -Usage of the apostrophe <'> in kernel messages is deprecated
    + Chapter : Printing kernel messages
     
    -Mis-spellings allowed in kernel messages are:
    +Kernel developers like to be seen as literate. Do mind the spelling
    +of kernel messages to make a good impression. Do not use crippled
    +words like "dont" and use "do not" or "don't" instead.
     
    - dont, cant
    +Kernel messages do not have to be terminated with a period.
     
    -Printing numbers in parenthesis ie (%d) is deprecated
    +Printing numbers in parenthesis (%d) adds no value and should be avoided.
     
    ----------------------------------------------------

    Diff against current.

    --- Documentation/CodingStyle.mhf.orig 2004-01-31 17:38:02.000000000 +0800
    +++ Documentation/CodingStyle 2004-02-13 16:42:07.000000000 +0800
    @@ -1,42 +1,74 @@
     
    - Linux kernel coding style
    + Linux kernel coding style
     
     This is a short document describing the preferred coding style for the
     linux kernel. Coding style is very personal, and I won't _force_ my
     views on anybody, but this is what goes for anything that I have to be
     able to maintain, and I'd prefer it for most other things too. Please
    -at least consider the points made here.
    +at least consider the points made here.
     
     First off, I'd suggest printing out a copy of the GNU coding standards,
    -and NOT read it. Burn them, it's a great symbolic gesture.
    +and NOT read it. Burn them, it's a great symbolic gesture.
     
     Anyway, here goes:
     
     
                      Chapter 1: Indentation
     
    -Tabs are 8 characters, and thus indentations are also 8 characters.
    +Tabs are 8 characters, and thus indentations are also 8 characters.
     There are heretic movements that try to make indentations 4 (or even 2!)
     characters deep, and that is akin to trying to define the value of PI to
    -be 3.
    +be 3.
     
     Rationale: The whole idea behind indentation is to clearly define where
     a block of control starts and ends. Especially when you've been looking
     at your screen for 20 straight hours, you'll find it a lot easier to see
    -how the indentation works if you have large indentations.
    +how the indentation works if you have large indentations.
     
     Now, some people will claim that having 8-character indentations makes
     the code move too far to the right, and makes it hard to read on a
     80-character terminal screen. The answer to that is that if you need
     more than 3 levels of indentation, you're screwed anyway, and should fix
    -your program.
    +your program.
     
     In short, 8-char indents make things easier to read, and have the added
    -benefit of warning you when you're nesting your functions too deep.
    -Heed that warning.
    +benefit of warning you when you're nesting your functions too deep.
    +Heed that warning.
     
    +Don't put multiple statements on a single line unless you have
    +something to hide:
     
    - Chapter 2: Placing Braces
    + if (condition) do_this;
    + do_something_everytime;
    +
    +Outside of comments and except in Kconfig, spaces are never used for
    +indentation.
    +
    +Don't leave whitespace at the end of lines.
    +
    +
    + Chapter 2: Breaking long lines and strings
    +
    +Coding style is all about readability and maintainability using commonly
    +available tools.
    +
    +Statements longer than 80 columns will be broken into sensible chunks.
    +Descendant's are always shorter than the parent and are placed substantially
    +to the right. The same applies to function headers with a long argument list.
    +Long strings are as well broken into smaller strings.
    +
    +void fun(int a, int b, int c)
    +{
    + if (condition)
    + printk(KERN_WARNING "Warning this is a long printk with "
    + "3 parameters a: %u b: %u "
    + "c: %u \n", a, b, c);
    + else
    + next_statement;
    +}
    +
    +
    + Chapter : Placing Braces
     
     The other issue that always comes up in C styling is the placement of
     braces. Unlike the indent size, there are few technical reasons to
    @@ -59,7 +91,7 @@
     Heretic people all over the world have claimed that this inconsistency
     is ... well ... inconsistent, but all right-thinking people know that
     (a) K&R are _right_ and (b) K&R are right. Besides, functions are
    -special anyway (you can't nest them in C).
    +special anyway (you can't nest them in C).
     
     Note that the closing brace is empty on a line of its own, _except_ in
     the cases where it is followed by a continuation of the same statement,
    @@ -79,60 +111,60 @@
             } else {
                     ....
             }
    -
    -Rationale: K&R.
    +
    +Rationale: K&R.
     
     Also, note that this brace-placement also minimizes the number of empty
     (or almost empty) lines, without any loss of readability. Thus, as the
     supply of new-lines on your screen is not a renewable resource (think
     25-line terminal screens here), you have more empty lines to put
    -comments on.
    +comments on.
     
     
    - Chapter 3: Naming
    + Chapter : Naming
     
     C is a Spartan language, and so should your naming be. Unlike Modula-2
     and Pascal programmers, C programmers do not use cute names like
     ThisVariableIsATemporaryCounter. A C programmer would call that
     variable "tmp", which is much easier to write, and not the least more
    -difficult to understand.
    +difficult to understand.
     
     HOWEVER, while mixed-case names are frowned upon, descriptive names for
     global variables are a must. To call a global function "foo" is a
    -shooting offense.
    +shooting offense.
     
     GLOBAL variables (to be used only if you _really_ need them) need to
     have descriptive names, as do global functions. If you have a function
     that counts the number of active users, you should call that
    -"count_active_users()" or similar, you should _not_ call it "cntusr()".
    +"count_active_users()" or similar, you should _not_ call it "cntusr()".
     
     Encoding the type of a function into the name (so-called Hungarian
     notation) is brain damaged - the compiler knows the types anyway and can
     check those, and it only confuses the programmer. No wonder MicroSoft
    -makes buggy programs.
    +makes buggy programs.
     
     LOCAL variable names should be short, and to the point. If you have
    -some random integer loop counter, it should probably be called "i".
    +some random integer loop counter, it should probably be called "i".
     Calling it "loop_counter" is non-productive, if there is no chance of it
     being mis-understood. Similarly, "tmp" can be just about any type of
    -variable that is used to hold a temporary value.
    +variable that is used to hold a temporary value.
     
     If you are afraid to mix up your local variable names, you have another
    -problem, which is called the function-growth-hormone-imbalance syndrome.
    -See next chapter.
    +problem, which is called the function-growth-hormone-imbalance syndrome.
    +See next chapter.
    +
     
    -
    - Chapter 4: Functions
    + Chapter : Functions
     
     Functions should be short and sweet, and do just one thing. They should
    -fit on one or two screenfuls of text (the ISO/ANSI screen size is 80x24,
    -as we all know), and do one thing and do that well.
    +fit on one or two screens full of text (the ISO/ANSI screen size is 80x24,
    +as we all know), and do one thing and do that well.
     
     The maximum length of a function is inversely proportional to the
     complexity and indentation level of that function. So, if you have a
     conceptually simple function that is just one long (but simple)
     case-statement, where you have to do lots of small things for a lot of
    -different cases, it's OK to have a longer function.
    +different cases, it's OK to have a longer function.
     
     However, if you have a complex function, and you suspect that a
     less-than-gifted first-year high-school student might not even
    @@ -140,41 +172,80 @@
     maximum limits all the more closely. Use helper functions with
     descriptive names (you can ask the compiler to in-line them if you think
     it's performance-critical, and it will probably do a better job of it
    -than you would have done).
    +than you would have done).
     
     Another measure of the function is the number of local variables. They
     shouldn't exceed 5-10, or you're doing something wrong. Re-think the
     function, and split it into smaller pieces. A human brain can
     generally easily keep track of about 7 different things, anything more
     and it gets confused. You know you're brilliant, but maybe you'd like
    -to understand what you did 2 weeks from now.
    +to understand what you did 2 weeks from now.
    +
    +Centralized exiting of functions
     
    +Albeit deprecated by some people, the goto statement is used frequently
    +by compilers in form of the unconditional jump instruction.
     
    - Chapter 5: Commenting
    +The goto statement comes in handy when a function exits from multiple
    +locations and some common work such as cleanup has to be done.
    +
    +The rationale is:
    +
    +- unconditional statements are easier to understand and follow
    +- nesting is reduced
    +- errors by not updating individual exit points when making modifications
    + are prevented
    +- saves the compiler work to optimize redundant code away ;)
    +
    +int fun(int )
    +{
    + int result = 0;
    + char *buffer = kmalloc(SIZE);
    +
    + if (buffer == 0) {
    + result = -1;
    + goto out;
    + }
    +
    + if (condition1) {
    + while (loop1) {
    + ...
    + }
    + result = 1;
    + goto out;
    + }
    + ...
    +out:
    + if (buffer)
    + kfree(buffer);
    + return result;
    +}
    +
    + Chapter : Commenting
     
     Comments are good, but there is also a danger of over-commenting. NEVER
     try to explain HOW your code works in a comment: it's much better to
     write the code so that the _working_ is obvious, and it's a waste of
    -time to explain badly written code.
    +time to explain badly written code.
     
    -Generally, you want your comments to tell WHAT your code does, not HOW.
    +Generally, you want your comments to tell WHAT your code does, not HOW.
     Also, try to avoid putting comments inside a function body: if the
     function is so complex that you need to separately comment parts of it,
     you should probably go back to chapter 4 for a while. You can make
     small comments to note or warn about something particularly clever (or
     ugly), but try to avoid excess. Instead, put the comments at the head
     of the function, telling people what it does, and possibly WHY it does
    -it.
    +it.
     
     
    - Chapter 6: You've made a mess of it
    + Chapter : You've made a mess of it
     
     That's OK, we all do. You've probably been told by your long-time Unix
     user helper that "GNU emacs" automatically formats the C sources for
     you, and you've noticed that yes, it does do that, but the defaults it
     uses are less than desirable (in fact, they are worse than random
     typing - an infinite number of monkeys typing into GNU emacs would never
    -make a good program).
    +make a good program).
     
     So, you can either get rid of GNU emacs, or change it to use saner
     values. To do the latter, you can stick the following in your .emacs file:
    @@ -201,33 +272,35 @@
     everything is lost: use "indent".
     
     Now, again, GNU indent has the same brain-dead settings that GNU emacs
    -has, which is why you need to give it a few command line options.
    +has, which is why you need to give it a few command line options.
     However, that's not too bad, because even the makers of GNU indent
     recognize the authority of K&R (the GNU people aren't evil, they are
     just severely misguided in this matter), so you just give indent the
    -options "-kr -i8" (stands for "K&R, 8 character indents").
    +options "-kr -i8" (stands for "K&R, 8 character indents").
     
     "indent" has a lot of options, and especially when it comes to comment
     re-formatting you may want to take a look at the manual page. But
    -remember: "indent" is not a fix for bad programming.
    +remember: "indent" is not a fix for bad programming.
     
     
    - Chapter 7: Configuration-files
    + Chapter : Configuration-files
     
    -For configuration options (arch/xxx/config.in, and all the Config.in files),
    +For configuration options (arch/xxx/Kconfig, and all the Kconfig files),
     somewhat different indentation is used.
     
    -An indention level of 3 is used in the code, while the text in the config-
    -options should have an indention-level of 2 to indicate dependencies. The
    -latter only applies to bool/tristate options. For other options, just use
    -common sense. An example:
    -
    -if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
    - tristate 'Apply nitroglycerine inside the keyboard (DANGEROUS)' CONFIG_BOOM
    - if [ "$CONFIG_BOOM" != "n" ]; then
    - bool ' Output nice messages when you explode' CONFIG_CHEER
    - fi
    -fi
    +Help text is indented with 2 spaces.
    +
    +if CONFIG_EXPERIMENTAL
    + tristate CONFIG_BOOM
    + default n
    + help
    + Apply nitroglycerine inside the keyboard (DANGEROUS)
    + bool CONFIG_CHEER
    + depends on CONFIG_BOOM
    + default y
    + help
    + Output nice messages when you explode
    +endif
     
     Generally, CONFIG_EXPERIMENTAL should surround all options not considered
     stable. All options that are known to trash data (experimental write-
    @@ -235,20 +308,20 @@
     experimental options should be denoted (EXPERIMENTAL).
     
     
    - Chapter 8: Data structures
    + Chapter : Data structures
     
     Data structures that have visibility outside the single-threaded
     environment they are created and destroyed in should always have
     reference counts. In the kernel, garbage collection doesn't exist (and
     outside the kernel garbage collection is slow and inefficient), which
    -means that you absolutely _have_ to reference count all your uses.
    +means that you absolutely _have_ to reference count all your uses.
     
     Reference counting means that you can avoid locking, and allows multiple
     users to have access to the data structure in parallel - and not having
     to worry about the structure suddenly going away from under them just
    -because they slept or did something else for a while.
    +because they slept or did something else for a while.
     
    -Note that locking is _not_ a replacement for reference counting.
    +Note that locking is _not_ a replacement for reference counting.
     Locking is used to keep data structures coherent, while reference
     counting is a memory management technique. Usually both are needed, and
     they are not to be confused with each other.
    @@ -264,3 +337,68 @@
     
     Remember: if another thread can find your data structure, and you don't
     have a reference count on it, you almost certainly have a bug.
    +
    +
    + Chapter : Inlines, Enums and Macros
    +
    +Macros defining constants and values in enums are capitalized.
    +
    +#define CONSTANT 0x12345
    +
    +Enums are preferred when defining several related constants.
    +
    +CAPITALIZED macro names are appreciated but macros resembling functions
    +may be named in lower case.
    +
    +Generally, inline functions are preferable to macros resembling functions.
    +
    +Macros with multiple statements should be enclosed in a do - while block.
    +
    +#define macrofun(a,b,c) \
    +do { \
    + if (a == 5) \
    + do_this(b,c); \
    + \
    +} while (0)
    +
    +Things to avoid when doing macros:
    +
    +1) macros that affect control flow:
    +
    +#define FOO(x) \
    + do { \
    + if (blah(x) < 0) \
    + return -EBUGGERED; \
    + } while(0)
    +
    +is a _very_ bad idea. It looks like a function call but exits the "calling"
    +function; don't break the internal parsers of those who will read the code.
    +
    +2) macros that depend on having a local variable with magic name:
    +
    +#define FOO(val) bar(index, val)
    +
    +might look like a good thing, but it's confusing as hell when one reads the
    +code and it's prone to breakage from seemingly innocent changes.
    +
    +3) macros with arguments that are used as l-values: FOO(x) = y; will
    +bite you if somebody e.g. turns FOO into inlined function.
    +
    +4) forgetting about sideeffects. Macros defining expressions must enclose the
    +expression in parenthesis. Note that this does not eliminate all side effects.
    +
    +#define CONSTEXP (CONSTANT | 3)
    +#define MACWEXP(a,b) ((a) + (b))
    +
    +
    + Chapter : Printing kernel messages
    +
    +Kernel developers like to be seen as literate. Do mind the spelling
    +of kernel messages to make a good impression. Do not use crippled
    +words like "dont" and use "do not" or "don't" instead.
    +
    +Kernel messages do not have to be terminated with a period.
    +
    +Printing numbers in parenthesis (%d) adds no value and should be avoided.
    +
    +

    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/


  • Next message: Juan Piernas Canovas: "Re: ext2/3 performance regression in 2.6 vs 2.4 for small interleaved writes"

    Relevant Pages

    • Re: utrace comments
      ... of single-step on machines/configurations where single-step is always ... It is not mentioned in Documentation/CodingStyle, and the existing kernel ... I don not think these kinds of macros are a very good idea. ...
      (Linux-Kernel)
    • Re: Indenting unknown keywords
      ... > provides additional 'keywords' to the C++ language. ... > actually macros. ... > The problem is that this keyword mess up entirely my indentation. ... It's waiting for you to type a semicolon. ...
      (comp.emacs)
    • [PATCH/v2] CodingStyle updates
      ... Add some kernel coding style comments, ... add paragraph on switch/case indentation ... +The preferred way to ease multiple indentation levels in a switch ...
      (Linux-Kernel)
    • [PATCH/RFC] CodingStyle updates
      ... Add some kernel coding style comments, ... add paragraph on switch/case indentation ... +The preferred way to ease multiple indentation levels in a switch ... Don't put multiple statements on a single line unless you have ...
      (Linux-Kernel)
    • Re: [patch] CFS scheduler, -v12
      ... a kernel with these macros undefined and reran my tests. ... it's CONFIG_SCHED_SMT that's causing the problem. ... dual core or dual package or one with HT? ...
      (Linux-Kernel)

    Loading