| /linux/scripts/ |
| H A D | Makefile.warn | 9 # Default set of warnings, always enabled 67 # disable pointer signed / unsigned warnings in gcc 4.0 83 # warnings for bounds checks involving those possible values. While 86 # warnings are produced (?!). Using -Walloc-size-larger-than=SIZE_MAX 111 # W=1 - warnings which may be relevant and do not occur too often 157 # W=2 - warnings which occur quite often but may still be relevant 170 # The following turn off the warnings enabled by -Wextra 185 # W=3 - more obscure warnings, can most likely be ignored 204 # The following turn off the warnings enabled by -Wextra 211 # W=e and CONFIG_WERROR - error out on warnings [all...] |
| H A D | kernel-doc | 181 warnings happened. 186 Helper class to capitalize errors and warnings, the same way 207 help="Verbose output, more warnings and other information.") 234 help="Enable all types of warnings") 237 help="Treat warnings as errors.") 252 help="Do not output documentation, only warnings.") 385 print("%s warnings as errors" % error_count) # pylint: disable=C0209
|
| H A D | kernel-doc.py | |
| /linux/Documentation/doc-guide/ |
| H A D | contributing.rst | 30 Addressing warnings 34 warnings. When you have that many, you might as well have none at all; 36 ones. For this reason, eliminating warnings is one of the highest-priority 41 Warnings issued by a compiler for C code can often be dismissed as false 43 Warnings from the documentation build almost always point at a real 44 problem; making those warnings go away requires understanding the problem 46 warnings should probably not say "fix a warning" in the changelog title; 49 Another important point is that documentation warnings are often created by 51 maintainer appreciates being copied on fixes for these warnings, the 55 For example, in a documentation build I grabbed a pair of warnings nearly [all …]
|
| /linux/tools/testing/selftests/rcutorture/bin/ |
| H A D | parse-build.sh | 38 grep warning: < $F > $T/warnings 39 grep "include/linux/*rcu*\.h:" $T/warnings > $T/hwarnings 40 grep "kernel/rcu/[^/]*:" $T/warnings > $T/cwarnings 41 grep "^ld: .*undefined reference to" $T/warnings | head -1 > $T/ldwarnings
|
| H A D | kvm-test-1-run-qemu.sh | 110 echo Completed in $kruntime vs. $seconds >> $resdir/Warnings 2>&1 111 grep "^(qemu) qemu:" $resdir/kvm-test-1-run*.sh.out >> $resdir/Warnings 2>&1 112 …ed -n "s/^(qemu) qemu: terminating on signal [0-9]* from pid \([0-9]*\).*$/\1/p" $resdir/Warnings`" 115 echo "ps -fp $killpid" >> $resdir/Warnings 2>&1 116 ps -fp $killpid >> $resdir/Warnings 2>&1 139 echo "PID $qemu_pid killed due to run STOP.1 request `date`" >> $resdir/Warnings 2>&1 171 echo "!!! PID $qemu_pid hung at $kruntime vs. $seconds seconds `date`" >> $resdir/Warnings 2>&1
|
| /linux/include/uapi/linux/ |
| H A D | dqblk_xfs.h | 68 __u16 d_iwarns; /* # warnings issued wrt num inodes */ 69 __u16 d_bwarns; /* # warnings issued wrt disk blocks */ 78 __u16 d_rtbwarns; /* # warnings issued wrt RT disk blks */ 108 * warnings are set/cleared by the administrators (or automatically by going 175 __u16 qs_bwarnlimit; /* limit for num warnings */ 176 __u16 qs_iwarnlimit; /* limit for num warnings */ 220 __u16 qs_bwarnlimit; /* limit for num warnings */ 221 __u16 qs_iwarnlimit; /* limit for num warnings */ 222 __u16 qs_rtbwarnlimit;/* limit for rt blks warnings */
|
| /linux/tools/testing/ktest/examples/include/ |
| H A D | patchcheck.conf | 56 # Instead of just checking for warnings to files that are changed 57 # it can be advantageous to check for any new warnings. If a 59 # touched by the commit. To detect these kinds of warnings, you 65 # warnings file. 74 # and record all the warnings that exist before the patches
|
| /linux/drivers/base/test/ |
| H A D | test_async_driver_probe.c | 21 static atomic_t warnings, errors, timeout, async_completed; variable 51 atomic_inc(&warnings); in test_probe() 240 * Otherwise if they completed without errors or warnings then in test_async_probe_init() 247 } else if (!atomic_read(&errors) && !atomic_read(&warnings)) { in test_async_probe_init() 267 * errors or warnings being reported by the probe routine. in test_async_probe_init() 274 pr_err("Test failed with %d errors and %d warnings\n", in test_async_probe_init() 275 atomic_read(&errors), atomic_read(&warnings)); in test_async_probe_init()
|
| /linux/lib/ |
| H A D | debugobjects.c | 1171 seq_printf(m, "warnings : %d\n", debug_objects_warnings); in debug_stats_show() 1299 check_results(void *addr, enum debug_obj_state state, int fixups, int warnings) in check_results() argument 1325 if (warnings != debug_objects_warnings) { in check_results() 1326 WARN(1, KERN_ERR "ODEBUG: selftest warnings failed %d != %d\n", in check_results() 1327 warnings, debug_objects_warnings); in check_results() 1351 int fixups, oldfixups, warnings, oldwarnings; in debug_objects_selftest() local 1357 warnings = oldwarnings = debug_objects_warnings; in debug_objects_selftest() 1361 if (check_results(&obj, ODEBUG_STATE_INIT, fixups, warnings)) in debug_objects_selftest() 1364 if (check_results(&obj, ODEBUG_STATE_ACTIVE, fixups, warnings)) in debug_objects_selftest() 1367 if (check_results(&obj, ODEBUG_STATE_ACTIVE, ++fixups, ++warnings)) in debug_objects_selftest() [all …]
|
| /linux/tools/power/acpi/ |
| H A D | Makefile.config | 64 WARNINGS := -Wall 65 WARNINGS += $(call cc-supports,-Wstrict-prototypes) 66 WARNINGS += $(call cc-supports,-Wdeclaration-after-statement) 71 CFLAGS += $(WARNINGS)
|
| /linux/tools/objtool/ |
| H A D | check.c | 1080 * Warnings shouldn't be reported for ignored functions. 4112 int warnings = 0; in validate_unwind_hints() local 4121 warnings += validate_unwind_hint(file, insn, &state); in validate_unwind_hints() 4124 warnings += validate_unwind_hint(file, insn, &state); in validate_unwind_hints() 4127 return warnings; in validate_unwind_hints() 4248 int warnings = 0; in validate_unrets() local 4254 warnings += validate_unret(file, insn); in validate_unrets() 4257 return warnings; in validate_unrets() 4263 int warnings = 0; in validate_retpoline() local 4280 warnings++; in validate_retpoline() [all …]
|
| H A D | builtin-check.c | 103 OPT_BOOLEAN(0, "no-unreachable", &opts.no_unreachable, "skip 'unreachable instruction' warnings"), 105 OPT_BOOLEAN(0, "sec-address", &opts.sec_address, "print section addresses in warnings"), 108 OPT_BOOLEAN('v', "verbose", &opts.verbose, "verbose warnings"), 109 OPT_BOOLEAN(0, "werror", &opts.werror, "return error on warnings"), in cmd_parse_options()
|
| /linux/arch/x86/tools/ |
| H A D | insn_decoder_test.c | 116 int warnings = 0; in main() local 156 warnings++; in main() 166 if (warnings) in main() 168 "failures\n", insns, warnings); in main()
|
| /linux/tools/usb/ffs-aio-example/simple/host_app/ |
| H A D | Makefile | 5 WARNINGS = -Wall -Wextra macro 6 CFLAGS = $(LIBUSB_CFLAGS) $(WARNINGS)
|
| /linux/tools/usb/ffs-aio-example/multibuff/host_app/ |
| H A D | Makefile | 5 WARNINGS = -Wall -Wextra macro 6 CFLAGS = $(LIBUSB_CFLAGS) $(WARNINGS)
|
| /linux/scripts/coccinelle/misc/ |
| H A D | uninitialized_var.cocci | 7 /// For any compiler warnings about uninitialized variables, just add 10 /// compiler warnings (e.g. "unused variable"). If the compiler thinks it
|
| /linux/arch/m68k/include/asm/ |
| H A D | io_mm.h | 138 default: return NULL; /* avoid warnings, just in case */ in isa_itb() 154 default: return NULL; /* avoid warnings, just in case */ in isa_itw() 164 default: return 0; /* avoid warnings, just in case */ in isa_itl() 180 default: return NULL; /* avoid warnings, just in case */ in isa_mtb() 196 default: return NULL; /* avoid warnings, just in case */ in isa_mtw() 260 default: break; /* avoid warnings */ in isa_delay()
|
| /linux/tools/testing/selftests/ |
| H A D | lib.mk | 41 # gcc defaults to silence (off) for the following warnings, but clang defaults 42 # to the opposite. The warnings are not useful for the kernel itself, which is 45 # warnings from clang. Therefore, disable the warnings for clang builds.
|
| /linux/tools/include/uapi/ |
| H A D | README | 57 tooling, driven by non-fatal warnings on the tooling side build when 67 and integate them into the tooling build. The warnings above serve as a
|
| /linux/arch/parisc/kernel/ |
| H A D | pdc_chassis.c | 10 * Find out how to get Chassis warnings out of PAT boxes? 277 printk(KERN_INFO "Chassis warnings not supported.\n"); in pdc_chassis_create_procfs() 281 printk(KERN_INFO "Enabling PDC chassis warnings support v%s\n", in pdc_chassis_create_procfs()
|
| /linux/Documentation/devicetree/bindings/display/ |
| H A D | allwinner,sun4i-a10-tcon.yaml | 371 * it would trigger a bunch of warnings for redefinitions of 441 * it would trigger a bunch of warnings for redefinitions of 517 * it would trigger a bunch of warnings for redefinitions of 568 * it would trigger a bunch of warnings for redefinitions of 625 * it would trigger a bunch of warnings for redefinitions of
|
| /linux/include/linux/ |
| H A D | quota.h | 356 int d_ino_warns; /* # warnings issued wrt num inodes */ 357 int d_spc_warns; /* # warnings issued wrt used space */ 362 int d_rt_spc_warns; /* # warnings issued wrt RT space */ 403 unsigned int spc_warnlimit; /* Limit for number of space warnings */ 424 unsigned int i_spc_warnlimit; /* Limit for number of space warnings */ 425 unsigned int i_ino_warnlimit; /* Limit for number of inode warnings */
|
| /linux/fs/xfs/ |
| H A D | Kconfig | 195 bool "XFS Verbose Warnings" 198 Say Y here to get an XFS build with many additional warnings. 241 result in warnings.
|
| /linux/tools/include/linux/ |
| H A D | bits.h | 40 * For example, all these create build errors or warnings: 62 * following examples generate compiler warnings due to -Wshift-count-overflow:
|