/linux-6.1.9/tools/testing/selftests/bpf/prog_tests/ |
D | kfunc_call.c | 40 #define __BPF_TEST_FAIL(name, __retval, type, error_msg) \ argument 46 .expected_err_msg = error_msg, \ 53 #define TC_FAIL(name, retval, error_msg) __BPF_TEST_FAIL(name, retval, tc_test, error_msg) argument 54 #define SYSCALL_NULL_CTX_FAIL(name, retval, error_msg) \ argument 55 __BPF_TEST_FAIL(name, retval, syscall_null_ctx_test, error_msg)
|
/linux-6.1.9/fs/ext4/ |
D | dir.c | 84 const char *error_msg = NULL; in __ext4_check_dir_entry() local 92 error_msg = "rec_len is smaller than minimal"; in __ext4_check_dir_entry() 94 error_msg = "rec_len % 4 != 0"; in __ext4_check_dir_entry() 97 error_msg = "rec_len is too small for name_len"; in __ext4_check_dir_entry() 99 error_msg = "directory entry overrun"; in __ext4_check_dir_entry() 103 error_msg = "directory entry too close to block end"; in __ext4_check_dir_entry() 106 error_msg = "inode out of bounds"; in __ext4_check_dir_entry() 114 error_msg, offset, le32_to_cpu(de->inode), in __ext4_check_dir_entry() 120 error_msg, offset, le32_to_cpu(de->inode), in __ext4_check_dir_entry()
|
D | extents.c | 458 const char *error_msg; in __ext4_ext_check() local 462 error_msg = "invalid magic"; in __ext4_ext_check() 466 error_msg = "unexpected eh_depth"; in __ext4_ext_check() 470 error_msg = "invalid eh_max"; in __ext4_ext_check() 475 error_msg = "too large eh_max"; in __ext4_ext_check() 479 error_msg = "invalid eh_entries"; in __ext4_ext_check() 483 error_msg = "eh_entries is 0 but eh_depth is > 0"; in __ext4_ext_check() 487 error_msg = "invalid extent entries"; in __ext4_ext_check() 491 error_msg = "too large eh_depth"; in __ext4_ext_check() 497 error_msg = "extent tree corrupted"; in __ext4_ext_check() [all …]
|
/linux-6.1.9/net/ceph/ |
D | messenger_v2.c | 1937 con->error_msg = "server is speaking msgr1 protocol"; in process_banner_prefix() 1939 con->error_msg = "protocol error, bad banner"; in process_banner_prefix() 1969 con->error_msg = "missing required protocol features"; in process_banner_payload() 1975 con->error_msg = "missing required protocol features"; in process_banner_payload() 2003 con->error_msg = "protocol error, unexpected hello"; in process_hello() 2020 con->error_msg = "wrong peer at address"; in process_hello() 2072 con->error_msg = "protocol error, unexpected auth_bad_method"; in process_auth_bad_method() 2131 con->error_msg = "protocol error, unexpected auth_reply_more"; in process_auth_reply_more() 2173 con->error_msg = "protocol error, unexpected auth_done"; in process_auth_done() 2233 con->error_msg = "protocol error, unexpected auth_signature"; in process_auth_signature() [all …]
|
D | messenger_v1.c | 701 con->error_msg = "protocol error, bad banner"; in verify_hello() 730 con->error_msg = "wrong peer at address"; in process_banner() 785 con->error_msg = "bad authorize reply"; in process_connect() 798 con->error_msg = "missing required protocol features"; in process_connect() 808 con->error_msg = "protocol version mismatch"; in process_connect() 816 con->error_msg = "connect authorization failure"; in process_connect() 896 con->error_msg = "missing required protocol features"; in process_connect() 934 con->error_msg = "protocol error, got WAIT as client"; in process_connect() 938 con->error_msg = "protocol error, garbage tag during connect"; in process_connect() 1125 con->error_msg = "bad message sequence # for incoming message"; in read_partial_message() [all …]
|
D | messenger.c | 1402 con->error_msg = "socket closed (con state " #x ")"; \ in con_sock_closed() 1508 if (!con->error_msg) in ceph_con_workfn() 1509 con->error_msg = "socket error on read"; in ceph_con_workfn() 1521 if (!con->error_msg) in ceph_con_workfn() 1522 con->error_msg = "socket error on write"; in ceph_con_workfn() 1548 ceph_pr_addr(&con->peer_addr), con->error_msg); in con_fault() 1549 con->error_msg = NULL; in con_fault() 2012 con->error_msg = "error allocating memory for incoming message"; in ceph_con_in_msg_alloc()
|
/linux-6.1.9/include/ras/ |
D | ras_event.h | 101 const char *error_msg, 113 TP_ARGS(err_type, error_msg, label, error_count, mc_index, 119 __string( msg, error_msg ) 134 __assign_str(msg, error_msg);
|
/linux-6.1.9/drivers/tty/serial/ |
D | pch_uart.c | 990 char *error_msg[5] = {}; in pch_uart_err_ir() local 994 error_msg[i++] = "Error data in FIFO\n"; in pch_uart_err_ir() 998 error_msg[i++] = " Framing Error\n"; in pch_uart_err_ir() 1003 error_msg[i++] = " Parity Error\n"; in pch_uart_err_ir() 1008 error_msg[i++] = " Overrun Error\n"; in pch_uart_err_ir() 1012 for (i = 0; error_msg[i] != NULL; i++) in pch_uart_err_ir() 1013 dev_err(&priv->pdev->dev, error_msg[i]); in pch_uart_err_ir()
|
/linux-6.1.9/drivers/gpu/drm/i915/ |
D | i915_gpu_error.c | 830 if (*error->error_msg) in __err_print_to_sgl() 831 err_printf(m, "%s\n", error->error_msg); in __err_print_to_sgl() 1911 static const char *error_msg(struct i915_gpu_coredump *error) in error_msg() function 1930 len = scnprintf(error->error_msg, sizeof(error->error_msg), in error_msg() 1936 len += scnprintf(error->error_msg + len, in error_msg() 1937 sizeof(error->error_msg) - len, in error_msg() 1942 return error->error_msg; in error_msg() 2127 drm_info(&i915->drm, "%s\n", error_msg(error)); in i915_error_state_store()
|
D | i915_gpu_error.h | 201 char error_msg[128]; member
|
/linux-6.1.9/drivers/media/pci/cx23885/ |
D | cx23885-alsa.c | 553 goto error_msg; in cx23885_audio_register() 579 error_msg: in cx23885_audio_register()
|
/linux-6.1.9/drivers/gpu/drm/i915/gt/ |
D | intel_reset.c | 1336 char error_msg[80]; in intel_gt_handle_error() local 1343 vscnprintf(error_msg, sizeof(error_msg), fmt, args); in intel_gt_handle_error() 1346 msg = error_msg; in intel_gt_handle_error()
|
/linux-6.1.9/tools/bpf/bpftool/ |
D | map.c | 193 const char *error_msg) in print_entry_error_msg() argument 195 int msg_size = strlen(error_msg); in print_entry_error_msg() 206 printf("value:%c%s", break_names ? '\n' : ' ', error_msg); in print_entry_error_msg()
|
/linux-6.1.9/drivers/w1/ |
D | w1.c | 413 const char *error_msg = "bad slave string format, expecting " in w1_atoreg_num() local 417 dev_err(dev, "%s", error_msg); in w1_atoreg_num() 422 dev_err(dev, "%s", error_msg); in w1_atoreg_num()
|
/linux-6.1.9/fs/ocfs2/ |
D | dir.c | 302 const char *error_msg = NULL; in ocfs2_check_dir_entry() local 306 error_msg = "rec_len is smaller than minimal"; in ocfs2_check_dir_entry() 308 error_msg = "rec_len % 4 != 0"; in ocfs2_check_dir_entry() 310 error_msg = "rec_len is too small for name_len"; in ocfs2_check_dir_entry() 313 error_msg = "directory entry across blocks"; in ocfs2_check_dir_entry() 315 if (unlikely(error_msg != NULL)) in ocfs2_check_dir_entry() 318 (unsigned long long)OCFS2_I(dir)->ip_blkno, error_msg, in ocfs2_check_dir_entry() 322 return error_msg == NULL ? 1 : 0; in ocfs2_check_dir_entry()
|
/linux-6.1.9/include/linux/ceph/ |
D | messenger.h | 444 const char *error_msg; /* error message, if any */ member
|
/linux-6.1.9/drivers/firewire/ |
D | ohci.c | 689 static void ar_context_abort(struct ar_context *ctx, const char *error_msg) in ar_context_abort() argument 697 ohci_err(ohci, "AR error: %s; DMA stopped\n", error_msg); in ar_context_abort()
|