X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Futils%2Fllog_reader.c;h=01e59de320d24a4c00cb46877975ac7ddda7fb68;hb=05fca4be33067f24a02e527c88cff5b60a20bb39;hp=6c776e2ef43ae54b51180d6e0eaccaa3ec9fc466;hpb=46f53da979344c88ab985de7227a81240a8107bf;p=fs%2Flustre-release.git diff --git a/lustre/utils/llog_reader.c b/lustre/utils/llog_reader.c index 6c776e2..01e59de 100644 --- a/lustre/utils/llog_reader.c +++ b/lustre/utils/llog_reader.c @@ -185,7 +185,8 @@ int main(int argc, char **argv) is_ext = is_fstype_ext(fd); if (is_ext < 0) { rc = is_ext; - printf("Unable to determine type of filesystem containing %s\n", + llapi_error(LLAPI_MSG_ERROR, -rc, + "Unable to determine filesystem type for %s", argv[1]); goto out_fd; } @@ -233,8 +234,7 @@ int llog_pack_buffer(int fd, struct llog_log_hdr **llog, file_size = st.st_size; if (file_size < sizeof(**llog)) { llapi_error(LLAPI_MSG_ERROR, rc, - "File too small for llog header: " - "need %zd, size %lld\n", + "File too small for llog header: want=%zd got=%lld", sizeof(**llog), file_size); rc = -EIO; goto out; @@ -356,7 +356,6 @@ void llog_unpack_buffer(int fd, struct llog_log_hdr *llog_buf, free(llog_buf); if (recs_buf != NULL) free(recs_buf); - return; } void print_llog_header(struct llog_log_hdr *llog_buf) @@ -378,7 +377,6 @@ void print_llog_header(struct llog_log_hdr *llog_buf) /* Add the other info you want to view here */ printf("-----------------------\n"); - return; } static void print_1_cfg(struct lustre_cfg *lcfg) @@ -393,7 +391,6 @@ static void print_1_cfg(struct lustre_cfg *lcfg) for (i = 0; i < lcfg->lcfg_bufcount; i++) printf("%d:%.*s ", i, lcfg->lcfg_buflens[i], (char*)lustre_cfg_buf(lcfg, i)); - return; } static char *lustre_cfg_string(struct lustre_cfg *lcfg, __u32 index) @@ -449,8 +446,6 @@ static void print_setup_cfg(struct lustre_cfg *lcfg) printf("setup "); print_1_cfg(lcfg); } - - return; } void print_lustre_cfg(struct lustre_cfg *lcfg, int *skip) @@ -638,7 +633,6 @@ void print_lustre_cfg(struct lustre_cfg *lcfg, int *skip) printf("unsupported cmd_code = %x\n",cmd); } printf("\n"); - return; } static void print_hsm_action(struct llog_agent_req_rec *larr)