make-bogus-warnings-go-away tree [was: 2.6.18-mm3]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



* Andrew Morton <[email protected]> wrote:

> - Added Jeff's make-bogus-warnings-go-away tree to the -mm lineup, as
>   git-gccbug.patch

Jeff: very nice! (I did this myself on a much smaller scale for the -rt 
patch, because it's just so lethal if some serious warning gets lost in 
the myriads of 'possible use of uninitialized' messages.)

A small suggestion: to give GCC folks a chance to actually fix this, 
could we actively annotate these places instead of working them around?
I.e., instead of:

        long cursor = 0;
        int error = 0;
-       void *new_mc;
+       void *new_mc = NULL;
        int cpu;
        cpumask_t old;

couldnt we do:

	void *new_mc __GCC_WARN_BUG;

and then do something like this in gcc.h:

 #ifdef CONFIG_ELIMINATE_BOGUS_GCC_WARNINGS
 # define __GCC_WARN_BUG = 0
 #else
 # define __GCC_WARN_BUG
 #endif

this both gives an in-source incentive for GCC folks to get rid of these 
bogus warnings (or remain shamed for eternity), and gives us the ability 
to control the presence of these workarounds (and the eventual ability 
to eliminate them in the future).

this would also mean we could merge your tree upstream without worrying 
about hiding gcc bugs.

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

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Stuff]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]     [Linux Resources]
  Powered by Linux