From: tappro Date: Mon, 17 Aug 2009 06:20:35 +0000 (+0000) Subject: Branch HEAD X-Git-Tag: v1_9_250~37 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=20464f9e398cac397df4fc62a634e6d7841b9b85 Branch HEAD b=19844 i=shadow i=deen rc == 1 is not error, make rc checking like in 1.8 --- diff --git a/lustre/obdclass/llog_obd.c b/lustre/obdclass/llog_obd.c index 0f10503..8c7196f 100644 --- a/lustre/obdclass/llog_obd.c +++ b/lustre/obdclass/llog_obd.c @@ -444,7 +444,7 @@ int llog_obd_origin_add(struct llog_ctxt *ctxt, cathandle = ctxt->loc_handle; LASSERT(cathandle != NULL); rc = llog_cat_add_rec(cathandle, rec, logcookies, NULL); - if ((rc < 0) || (!logcookies && rc)) + if (rc != 1) CERROR("write one catalog record failed: %d\n", rc); RETURN(rc); }