Home
last modified time | relevance | path

Searched refs:error_msg (Results 1 – 12 of 12) sorted by relevance

/Linux-v4.19/fs/ext4/
Ddir.c68 const char *error_msg = NULL; in __ext4_check_dir_entry() local
73 error_msg = "rec_len is smaller than minimal"; in __ext4_check_dir_entry()
75 error_msg = "rec_len % 4 != 0"; in __ext4_check_dir_entry()
77 error_msg = "rec_len is too small for name_len"; in __ext4_check_dir_entry()
79 error_msg = "directory entry overrun"; in __ext4_check_dir_entry()
82 error_msg = "inode out of bounds"; in __ext4_check_dir_entry()
90 error_msg, offset, le32_to_cpu(de->inode), in __ext4_check_dir_entry()
96 error_msg, offset, le32_to_cpu(de->inode), in __ext4_check_dir_entry()
Dextents.c441 const char *error_msg; in __ext4_ext_check() local
445 error_msg = "invalid magic"; in __ext4_ext_check()
449 error_msg = "unexpected eh_depth"; in __ext4_ext_check()
453 error_msg = "invalid eh_max"; in __ext4_ext_check()
458 error_msg = "too large eh_max"; in __ext4_ext_check()
462 error_msg = "invalid eh_entries"; in __ext4_ext_check()
466 error_msg = "invalid extent entries"; in __ext4_ext_check()
470 error_msg = "too large eh_depth"; in __ext4_ext_check()
476 error_msg = "extent tree corrupted"; in __ext4_ext_check()
486 (unsigned long long) pblk, error_msg, in __ext4_ext_check()
/Linux-v4.19/drivers/gpu/drm/i915/
Di915_gpu_error.h39 char error_msg[128]; member
328 const char *error_msg);
351 const char *error_msg) in i915_capture_error_state() argument
Di915_gpu_error.c651 if (*error->error_msg) in i915_error_state_to_str()
652 err_printf(m, "%s\n", error->error_msg); in i915_error_state_to_str()
1707 const char *error_msg) in i915_error_capture_msg() argument
1714 len = scnprintf(error->error_msg, sizeof(error->error_msg), in i915_error_capture_msg()
1719 len += scnprintf(error->error_msg + len, in i915_error_capture_msg()
1720 sizeof(error->error_msg) - len, in i915_error_capture_msg()
1725 scnprintf(error->error_msg + len, sizeof(error->error_msg) - len, in i915_error_capture_msg()
1727 error_msg, in i915_error_capture_msg()
1841 const char *error_msg) in i915_capture_error_state() argument
1859 i915_error_capture_msg(i915, error, engine_mask, error_msg); in i915_capture_error_state()
[all …]
Di915_irq.c3257 char error_msg[80]; in i915_handle_error() local
3264 vscnprintf(error_msg, sizeof(error_msg), fmt, args); in i915_handle_error()
3267 msg = error_msg; in i915_handle_error()
/Linux-v4.19/include/ras/
Dras_event.h101 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-v4.19/net/ceph/
Dmessenger.c1815 con->error_msg = "protocol error, bad banner"; in verify_hello()
2056 con->error_msg = "wrong peer at address"; in process_banner()
2110 con->error_msg = "bad authorize reply"; in process_connect()
2122 con->error_msg = "missing required protocol features"; in process_connect()
2133 con->error_msg = "protocol version mismatch"; in process_connect()
2142 con->error_msg = "connect authorization failure"; in process_connect()
2223 con->error_msg = "missing required protocol features"; in process_connect()
2261 con->error_msg = "protocol error, got WAIT as client"; in process_connect()
2265 con->error_msg = "protocol error, garbage tag during connect"; in process_connect()
2438 con->error_msg = "bad message sequence # for incoming message"; in read_partial_message()
[all …]
/Linux-v4.19/drivers/tty/serial/
Dpch_uart.c1055 char *error_msg[5] = {}; in pch_uart_err_ir() local
1059 error_msg[i++] = "Error data in FIFO\n"; in pch_uart_err_ir()
1063 error_msg[i++] = " Framing Error\n"; in pch_uart_err_ir()
1068 error_msg[i++] = " Parity Error\n"; in pch_uart_err_ir()
1073 error_msg[i++] = " Overrun Error\n"; in pch_uart_err_ir()
1077 for (i = 0; error_msg[i] != NULL; i++) in pch_uart_err_ir()
1078 dev_err(&priv->pdev->dev, error_msg[i]); in pch_uart_err_ir()
/Linux-v4.19/include/linux/ceph/
Dmessenger.h283 const char *error_msg; /* error message, if any */ member
/Linux-v4.19/drivers/w1/
Dw1.c420 const char *error_msg = "bad slave string format, expecting " in w1_atoreg_num() local
424 dev_err(dev, "%s", error_msg); in w1_atoreg_num()
429 dev_err(dev, "%s", error_msg); in w1_atoreg_num()
/Linux-v4.19/fs/ocfs2/
Ddir.c322 const char *error_msg = NULL; in ocfs2_check_dir_entry() local
326 error_msg = "rec_len is smaller than minimal"; in ocfs2_check_dir_entry()
328 error_msg = "rec_len % 4 != 0"; in ocfs2_check_dir_entry()
330 error_msg = "rec_len is too small for name_len"; in ocfs2_check_dir_entry()
333 error_msg = "directory entry across blocks"; in ocfs2_check_dir_entry()
335 if (unlikely(error_msg != NULL)) in ocfs2_check_dir_entry()
338 (unsigned long long)OCFS2_I(dir)->ip_blkno, error_msg, in ocfs2_check_dir_entry()
342 return error_msg == NULL ? 1 : 0; in ocfs2_check_dir_entry()
/Linux-v4.19/drivers/firewire/
Dohci.c703 static void ar_context_abort(struct ar_context *ctx, const char *error_msg) in ar_context_abort() argument
711 ohci_err(ohci, "AR error: %s; DMA stopped\n", error_msg); in ar_context_abort()