]> xenbits.xensource.com Git - people/liuw/libxenctrl-split/xen.git/commit
x86/mce: fix misleading indentation in init_nonfatal_mce_checker()
authorIan Campbell <ian.campbell@citrix.com>
Fri, 22 Jan 2016 15:19:51 +0000 (16:19 +0100)
committerJan Beulich <jbeulich@suse.com>
Fri, 22 Jan 2016 15:19:51 +0000 (16:19 +0100)
commit2e46e3f2539d026594ec1618e7df2c2bc8785b42
treec2b5890b859ce98ca0db5853a3aa55ee9907ebec
parentbce296364e6ec320a33fc8770b20f552d6163af6
x86/mce: fix misleading indentation in init_nonfatal_mce_checker()

Debian bug 812166[0] reported this build failure due to
Wmisleading-indentation with gcc-6:

non-fatal.c: In function 'init_nonfatal_mce_checker':
non-fatal.c:103:2: error: statement is indented as if it were guarded by... [-Werror=misleading-indentation]
  switch (c->x86_vendor) {
  ^~~~~~

non-fatal.c:97:5: note: ...this 'if' clause, but it is not
     if ( __get_cpu_var(poll_bankmask) == NULL )
     ^~

I was unable to reproduce (xen builds cleanly for me with "6.0.0 20160117
(experimental) [trunk revision 232481]") but looking at the code the issue
above is clearly real.

Correctly reindent the if statement.

This file uses Linux coding style (infact the use of Xen style for
this line is the root cause of the wanring) so use tabs and while
there remove the whitespace inside the if as Linux does.

[0] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=812166

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
xen/arch/x86/cpu/mcheck/non-fatal.c