| /linux/arch/arm/kernel/ |
| H A D | insn.c | 8 bool warn) in __arm_gen_branch_thumb2() argument 16 WARN_ON_ONCE(warn); in __arm_gen_branch_thumb2() 38 bool link, bool warn) in __arm_gen_branch_arm() argument 48 WARN_ON_ONCE(warn); in __arm_gen_branch_arm() 58 __arm_gen_branch(unsigned long pc, unsigned long addr, bool link, bool warn) in __arm_gen_branch() argument 61 return __arm_gen_branch_thumb2(pc, addr, link, warn); in __arm_gen_branch() 63 return __arm_gen_branch_arm(pc, addr, link, warn); in __arm_gen_branch()
|
| /linux/drivers/net/wireless/silabs/wfx/ |
| H A D | key.c | 29 WARN(!(wdev->key_map & BIT(idx)), "inconsistent key allocation"); in wfx_free_key() 36 WARN(key->keylen > sizeof(msg->key_data), "inconsistent data"); in fill_wep_pair() 46 WARN(key->keylen > sizeof(msg->key_data), "inconsistent data"); in fill_wep_group() 58 WARN(key->keylen != sizeof(msg->tkip_key_data) + sizeof(msg->tx_mic_key) + in fill_tkip_pair() 74 WARN(key->keylen != sizeof(msg->tkip_key_data) + 2 * sizeof(msg->rx_mic_key), in fill_tkip_group() 93 WARN(key->keylen != sizeof(msg->aes_key_data), "inconsistent data"); in fill_ccmp_pair() 102 WARN(key->keylen != sizeof(msg->aes_key_data), "inconsistent data"); in fill_ccmp_group() 115 WARN(key->keylen != sizeof(msg->wapi_key_data) + sizeof(msg->mic_key_data), in fill_sms4_pair() 130 WARN(key->keylen != sizeof(msg->wapi_key_data) + sizeof(msg->mic_key_data), in fill_sms4_group() 142 WARN(key->keylen != sizeof(msg->igtk_key_data), "inconsistent data"); in fill_aes_cmac_group() [all …]
|
| H A D | bh.c | 72 WARN(read_len > round_down(0xFFF, 2) * sizeof(u16), "request exceed the chip capability"); in rx_helper() 87 WARN(hif->encrypted & 0x3, "encryption is unsupported"); in rx_helper() 88 if (WARN(read_len < sizeof(struct wfx_hif_msg), "corrupted read")) in rx_helper() 107 WARN(wdev->hif.tx_buffers_used < release_count, "corrupted buffer counter"); in rx_helper() 175 WARN(len < sizeof(*hif), "try to send corrupted data"); in tx_helper() 181 WARN(len > le16_to_cpu(wdev->hw_caps.size_inp_ch_buf), in tx_helper() 205 WARN(!mutex_is_locked(&wdev->hif_cmd.lock), "data locking error"); in bh_work_tx() 297 WARN(!wdev->poll_irq, "unexpected IRQ polling can mask IRQ"); in wfx_bh_poll_irq()
|
| H A D | bus_sdio.c | 59 WARN(reg_id > 7, "chip only has 7 registers"); in wfx_sdio_copy_from_io() 60 WARN(!IS_ALIGNED((uintptr_t)dst, 4), "unaligned buffer address"); in wfx_sdio_copy_from_io() 61 WARN(!IS_ALIGNED(count, 4), "unaligned buffer size"); in wfx_sdio_copy_from_io() 79 WARN(reg_id > 7, "chip only has 7 registers"); in wfx_sdio_copy_to_io() 80 WARN(!IS_ALIGNED((uintptr_t)src, 4), "unaligned buffer address"); in wfx_sdio_copy_to_io() 81 WARN(!IS_ALIGNED(count, 4), "unaligned buffer size"); in wfx_sdio_copy_to_io()
|
| /linux/Documentation/devicetree/bindings/mfd/ |
| H A D | rohm,bd96801-pmic.yaml | 107 regulator-temp-warn-kelvin = <0>; 118 regulator-temp-warn-kelvin = <1>; 126 regulator-ov-warn-microvolt = <18000>; 127 regulator-uv-warn-microvolt = <18000>; 137 regulator-ov-warn-microvolt = <18000>; 138 regulator-uv-warn-microvolt = <18000>; 151 regulator-temp-warn-kelvin = <0>; 162 regulator-temp-warn-kelvin = <0>; 173 regulator-temp-warn-kelvin = <0>;
|
| /linux/scripts/coccinelle/misc/ |
| H A D | warn.cocci | 2 /// Use WARN(1,...) rather than printk followed by WARN_ON(1) 35 cocci.print_main("printk + WARN_ON can be just WARN",p) 41 msg = "SUGGESTION: printk + WARN_ON can be just WARN" 50 +WARN(1, 60 WARN(1,es);
|
| /linux/Documentation/userspace-api/media/dvb/ |
| H A D | headers.rst | 18 :warn-broken: 27 :warn-broken: 36 :warn-broken: 45 :warn-broken:
|
| /linux/scripts/ |
| H A D | checkpatch.pl | 118 if exceeded, warn on patches 121 in lines, if shorter, warn (default $min_conf_desc_length) 236 } elsif ($level eq "WARN") { 257 or warn "$P: Can't find a readable $configuration_file file $!\n"; 281 or warn "$P: Can't read the documentation file $docsfile $!\n"; 632 (?:[a-z0-9]+_){1,2}(?:printk|emerg|alert|crit|err|warning|warn|notice|info|debug|dbg|vdbg|devel|cont|WARN)(?:_ratelimited|_once|)| 634 WARN(?:_RATELIMIT|_ONCE|)| 985 warn "No typos will be found - file '$spelling_file': $!\n"; 1008 warn "N 2500 sub WARN { global() subroutine [all...] |
| /linux/arch/arm/mach-davinci/ |
| H A D | mux.c | 38 unsigned int mask, warn = 0; in davinci_cfg_reg() local 78 warn = 1; in davinci_cfg_reg() 84 if (warn) { in davinci_cfg_reg() 91 if (cfg->debug || warn) { in davinci_cfg_reg()
|
| H A D | Kconfig | 48 bool "Warn about pins the bootloader didn't set up" 51 Choose Y here to warn whenever driver initialization logic needs
|
| /linux/arch/arm/include/asm/ |
| H A D | insn.h | 33 __arm_gen_branch(unsigned long pc, unsigned long addr, bool link, bool warn); 42 arm_gen_branch_link(unsigned long pc, unsigned long addr, bool warn) in arm_gen_branch_link() argument 44 return __arm_gen_branch(pc, addr, true, warn); in arm_gen_branch_link()
|
| /linux/arch/sh/mm/ |
| H A D | alignment.c | 26 /* bitfield: 1: warn 2: fixup 4: signal -> combinations 2|4 && 1|2|4 are not 113 "warn", 115 "fixup+warn", 117 "signal+warn" 131 se_kernmode_warn ? "+warn" : ""); in alignment_proc_show()
|
| /linux/fs/sysfs/ |
| H A D | symlink.c | 22 const char *name, int warn) in sysfs_do_create_link_sd() argument 50 if (warn && PTR_ERR(kn) == -EEXIST) in sysfs_do_create_link_sd() 68 const char *name, int warn) in sysfs_do_create_link() argument 80 return sysfs_do_create_link_sd(parent, target, name, warn); in sysfs_do_create_link() 103 * doesn't warn if the link already exists.
|
| /linux/lib/ |
| H A D | logic_iomem.c | 74 WARN(1, "invalid ioremap(0x%llx, 0x%zx)\n", in real_ioremap() 81 WARN(1, "invalid iounmap for addr 0x%llx\n", in real_iounmap() 175 WARN(1, "Invalid read" #op " at address %llx\n", \ 183 WARN(1, "Invalid writeq" #op " of 0x%llx at address %llx\n", \ 197 WARN(1, "Invalid memset_io at address 0x%llx\n", in real_memset_io() 204 WARN(1, "Invalid memcpy_fromio at address 0x%llx\n", in real_memcpy_fromio() 213 WARN(1, "Invalid memcpy_toio at address 0x%llx\n", in real_memcpy_toio()
|
| /linux/fs/jfs/ |
| H A D | jfs_unicode.c | 24 static int warn_again = 5; /* Only warn up to 5 times total */ in jfs_strfromUCS_le() 25 int warn = !!warn_again; /* once per string */ in jfs_strfromUCS_le() local 43 if (unlikely(warn)) { in jfs_strfromUCS_le() 44 warn--; in jfs_strfromUCS_le()
|
| /linux/arch/mips/mm/ |
| H A D | uasm.c | 79 WARN(arg & ~RS_MASK, KERN_WARNING "Micro-assembler field overflow\n"); in build_rs() 86 WARN(arg & ~RT_MASK, KERN_WARNING "Micro-assembler field overflow\n"); in build_rt() 93 WARN(arg & ~RD_MASK, KERN_WARNING "Micro-assembler field overflow\n"); in build_rd() 100 WARN(arg & ~RE_MASK, KERN_WARNING "Micro-assembler field overflow\n"); in build_re() 107 WARN(arg > 0x7fff || arg < -0x8000, in build_simm() 115 WARN(arg & ~IMM_MASK, KERN_WARNING "Micro-assembler field overflow\n"); in build_uimm() 122 WARN(arg & ~SCIMM_MASK, in build_scimm() 130 WARN((arg > 0xff || arg < -0x100), in build_scimm9() 138 WARN(arg & ~FUNC_MASK, KERN_WARNING "Micro-assembler field overflow\n"); in build_func() 145 WARN(arg & ~SET_MASK, KERN_WARNING "Micro-assembler field overflow\n"); in build_set()
|
| /linux/tools/lib/api/ |
| H A D | debug.c | 22 void libapi_set_print(libapi_print_fn_t warn, in libapi_set_print() argument 26 __pr_warn = warn; in libapi_set_print()
|
| /linux/tools/perf/tests/ |
| H A D | vmlinux-kallsyms.c | 137 pr_info("WARN: Maps only in vmlinux:\n"); in test__vmlinux_matches_kallsyms_cb1() 158 pr_info("WARN: Maps in vmlinux with a different name in kallsyms:\n"); in test__vmlinux_matches_kallsyms_cb2() 162 pr_info("WARN: %" PRIx64 "-%" PRIx64 " %" PRIx64 " %s in kallsyms as", in test__vmlinux_matches_kallsyms_cb2() 180 pr_info("WARN: Maps only in kallsyms:\n"); in test__vmlinux_matches_kallsyms_cb3() 318 pr_debug("WARN: %#" PRIx64 ": diff end addr for %s v: %#" PRIx64 " k: %#" PRIx64 "\n", in test__vmlinux_matches_kallsyms() 336 pr_debug("WARN: %#" PRIx64 ": diff name v: %s k: %s\n", in test__vmlinux_matches_kallsyms() 339 pr_debug("WARN: %#" PRIx64 ": diff name v: %s k: %s\n", in test__vmlinux_matches_kallsyms()
|
| /linux/Documentation/ |
| H A D | Kconfig | 6 bool "Warn if there's a missing documentation file" 16 bool "Warn if there are errors at ABI files"
|
| /linux/rust/kernel/sync/ |
| H A D | refcount.rs | 64 /// It will saturate if overflows and `WARN`. It will also `WARN` if the refcount is 0, as this 77 /// It will `WARN` on underflow and fail to decrement when saturated. 89 /// It will `WARN` on underflow and fail to decrement when saturated.
|
| /linux/arch/x86/xen/ |
| H A D | apic.c | 72 /* Warn to see if there's any stray references */ in xen_apic_write() 73 WARN(1,"register: %x, value: %x\n", reg, val); in xen_apic_write() 88 /* Warn to see if there's any stray references */ in xen_apic_icr_write()
|
| /linux/drivers/media/tuners/ |
| H A D | fc0013-priv.h | 17 #undef warn 18 #define warn(f, arg...) printk(KERN_WARNING LOG_PREFIX": " f "\n" , ## arg) macro
|
| /linux/arch/powerpc/platforms/pseries/ |
| H A D | event_sources.c | 21 if (WARN(!virq, "event-sources: Unable to allocate " in request_event_sources_irqs() 26 if (WARN(rc, "event-sources: Unable to request interrupt %d for %pOF\n", in request_event_sources_irqs()
|
| /linux/arch/x86/boot/compressed/ |
| H A D | error.c | 10 void warn(const char *m) in warn() function 19 warn(m); in error()
|
| /linux/tools/include/asm/ |
| H A D | bug.h | 10 #define WARN(condition, format...) ({ \ macro 41 if (WARN(!__warned, format)) \
|