Home
last modified time | relevance | path

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

/linux-2.6.39/fs/ext3/
Ddir.c69 const char * error_msg = NULL; in ext3_check_dir_entry() local
73 error_msg = "rec_len is smaller than minimal"; in ext3_check_dir_entry()
75 error_msg = "rec_len % 4 != 0"; in ext3_check_dir_entry()
77 error_msg = "rec_len is too small for name_len"; in ext3_check_dir_entry()
79 error_msg = "directory entry across blocks"; in ext3_check_dir_entry()
82 error_msg = "inode out of bounds"; in ext3_check_dir_entry()
84 if (unlikely(error_msg != NULL)) in ext3_check_dir_entry()
88 dir->i_ino, error_msg, offset, in ext3_check_dir_entry()
92 return error_msg == NULL ? 1 : 0; in ext3_check_dir_entry()
/linux-2.6.39/fs/ext4/
Ddir.c74 const char *error_msg = NULL; in __ext4_check_dir_entry() local
79 error_msg = "rec_len is smaller than minimal"; in __ext4_check_dir_entry()
81 error_msg = "rec_len % 4 != 0"; in __ext4_check_dir_entry()
83 error_msg = "rec_len is too small for name_len"; in __ext4_check_dir_entry()
86 error_msg = "directory entry across blocks"; in __ext4_check_dir_entry()
89 error_msg = "inode out of bounds"; in __ext4_check_dir_entry()
97 error_msg, (unsigned) (offset%bh->b_size), in __ext4_check_dir_entry()
104 error_msg, (unsigned) (offset%bh->b_size), in __ext4_check_dir_entry()
Dextents.c384 const char *error_msg; in __ext4_ext_check() local
388 error_msg = "invalid magic"; in __ext4_ext_check()
392 error_msg = "unexpected eh_depth"; in __ext4_ext_check()
396 error_msg = "invalid eh_max"; in __ext4_ext_check()
401 error_msg = "too large eh_max"; in __ext4_ext_check()
405 error_msg = "invalid eh_entries"; in __ext4_ext_check()
409 error_msg = "invalid extent entries"; in __ext4_ext_check()
418 error_msg, le16_to_cpu(eh->eh_magic), in __ext4_ext_check()
/linux-2.6.39/net/ceph/
Dmessenger.c174 con->error_msg = "connection failed"; in ceph_state_change()
176 con->error_msg = "socket closed"; in ceph_state_change()
243 con->error_msg = "connect error"; in ceph_tcp_connect()
1031 con->error_msg = "protocol error, bad banner"; in verify_hello()
1179 con->error_msg = "wrong peer at address"; in process_banner()
1229 con->error_msg = "missing required protocol features"; in process_connect()
1240 con->error_msg = "protocol version mismatch"; in process_connect()
1249 con->error_msg = "connect authorization failure"; in process_connect()
1316 con->error_msg = "missing required protocol features"; in process_connect()
1348 con->error_msg = "protocol error, garbage tag during connect"; in process_connect()
[all …]
/linux-2.6.39/include/linux/ceph/
Dmessenger.h144 const char *error_msg; /* error message, if any */ member
/linux-2.6.39/drivers/w1/
Dw1.c395 const char *error_msg = "bad slave string format, expecting " in w1_atoreg_num() local
399 dev_err(dev, "%s", error_msg); in w1_atoreg_num()
404 dev_err(dev, "%s", error_msg); in w1_atoreg_num()
/linux-2.6.39/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-2.6.39/drivers/firewire/
Dohci.c651 static void ar_context_abort(struct ar_context *ctx, const char *error_msg) in ar_context_abort() argument
657 fw_error("AR error: %s; DMA stopped\n", error_msg); in ar_context_abort()