Home
last modified time | relevance | path

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

/linux-4.4.14/fs/ext4/
Ddir.c66 const char *error_msg = NULL; in __ext4_check_dir_entry() local
71 error_msg = "rec_len is smaller than minimal"; in __ext4_check_dir_entry()
73 error_msg = "rec_len % 4 != 0"; in __ext4_check_dir_entry()
75 error_msg = "rec_len is too small for name_len"; in __ext4_check_dir_entry()
77 error_msg = "directory entry across range"; in __ext4_check_dir_entry()
80 error_msg = "inode out of bounds"; in __ext4_check_dir_entry()
88 error_msg, (unsigned) (offset % size), in __ext4_check_dir_entry()
95 error_msg, (unsigned) (offset % size), in __ext4_check_dir_entry()
Dextents.c444 const char *error_msg; in __ext4_ext_check() local
448 error_msg = "invalid magic"; in __ext4_ext_check()
452 error_msg = "unexpected eh_depth"; in __ext4_ext_check()
456 error_msg = "invalid eh_max"; in __ext4_ext_check()
461 error_msg = "too large eh_max"; in __ext4_ext_check()
465 error_msg = "invalid eh_entries"; in __ext4_ext_check()
469 error_msg = "invalid extent entries"; in __ext4_ext_check()
475 error_msg = "extent tree corrupted"; in __ext4_ext_check()
485 (unsigned long long) pblk, error_msg, in __ext4_ext_check()
/linux-4.4.14/include/trace/events/
Dtimer.h333 TP_PROTO(int success, char *error_msg),
335 TP_ARGS(success, error_msg),
339 __string( msg, error_msg )
344 __assign_str(msg, error_msg);
/linux-4.4.14/include/ras/
Dras_event.h100 const char *error_msg,
112 TP_ARGS(err_type, error_msg, label, error_count, mc_index,
118 __string( msg, error_msg )
133 __assign_str(msg, error_msg);
/linux-4.4.14/drivers/gpu/drm/i915/
Di915_gpu_error.c347 err_printf(m, "%s\n", error->error_msg); in i915_error_state_to_str()
1242 const char *error_msg) in i915_error_capture_msg() argument
1250 len = scnprintf(error->error_msg, sizeof(error->error_msg), in i915_error_capture_msg()
1255 len += scnprintf(error->error_msg + len, in i915_error_capture_msg()
1256 sizeof(error->error_msg) - len, in i915_error_capture_msg()
1261 scnprintf(error->error_msg + len, sizeof(error->error_msg) - len, in i915_error_capture_msg()
1263 error_msg, in i915_error_capture_msg()
1288 const char *error_msg) in i915_capture_error_state() argument
1315 i915_error_capture_msg(dev, error, wedged, error_msg); in i915_capture_error_state()
1316 DRM_INFO("%s\n", error->error_msg); in i915_capture_error_state()
Di915_irq.c2591 char error_msg[80]; in i915_handle_error() local
2594 vscnprintf(error_msg, sizeof(error_msg), fmt, args); in i915_handle_error()
2597 i915_capture_error_state(dev, wedged, error_msg); in i915_handle_error()
Di915_drv.h498 char error_msg[128]; member
3271 const char *error_msg);
/linux-4.4.14/net/ceph/
Dmessenger.c1772 con->error_msg = "protocol error, bad banner"; in verify_hello()
2013 con->error_msg = "wrong peer at address"; in process_banner()
2052 con->error_msg = "missing required protocol features"; in process_connect()
2063 con->error_msg = "protocol version mismatch"; in process_connect()
2072 con->error_msg = "connect authorization failure"; in process_connect()
2153 con->error_msg = "missing required protocol features"; in process_connect()
2191 con->error_msg = "protocol error, got WAIT as client"; in process_connect()
2195 con->error_msg = "protocol error, garbage tag during connect"; in process_connect()
2354 con->error_msg = "bad message sequence # for incoming message"; in read_partial_message()
2534 con->error_msg = "connect error"; in try_write()
[all …]
/linux-4.4.14/drivers/tty/serial/
Dpch_uart.c1071 char *error_msg[5] = {}; in pch_uart_err_ir() local
1075 error_msg[i++] = "Error data in FIFO\n"; in pch_uart_err_ir()
1079 error_msg[i++] = " Framing Error\n"; in pch_uart_err_ir()
1084 error_msg[i++] = " Parity Error\n"; in pch_uart_err_ir()
1089 error_msg[i++] = " Overrun Error\n"; in pch_uart_err_ir()
1093 for (i = 0; error_msg[i] != NULL; i++) in pch_uart_err_ir()
1094 dev_err(&priv->pdev->dev, error_msg[i]); in pch_uart_err_ir()
/linux-4.4.14/include/linux/ceph/
Dmessenger.h194 const char *error_msg; /* error message, if any */ member
/linux-4.4.14/drivers/w1/
Dw1.c428 const char *error_msg = "bad slave string format, expecting " in w1_atoreg_num() local
432 dev_err(dev, "%s", error_msg); in w1_atoreg_num()
437 dev_err(dev, "%s", error_msg); in w1_atoreg_num()
/linux-4.4.14/fs/ocfs2/
Ddir.c321 const char *error_msg = NULL; in ocfs2_check_dir_entry() local
325 error_msg = "rec_len is smaller than minimal"; in ocfs2_check_dir_entry()
327 error_msg = "rec_len % 4 != 0"; in ocfs2_check_dir_entry()
329 error_msg = "rec_len is too small for name_len"; in ocfs2_check_dir_entry()
332 error_msg = "directory entry across blocks"; in ocfs2_check_dir_entry()
334 if (unlikely(error_msg != NULL)) in ocfs2_check_dir_entry()
337 (unsigned long long)OCFS2_I(dir)->ip_blkno, error_msg, in ocfs2_check_dir_entry()
341 return error_msg == NULL ? 1 : 0; in ocfs2_check_dir_entry()
/linux-4.4.14/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()