X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lustre%2Ffid%2Ffid_handler.c;fp=lustre%2Ffid%2Ffid_handler.c;h=a681117a7c12adf938bb7e823c408bc1938f492e;hp=2562f0f14c6e51a9579047e1f4c15b5292a17e1c;hb=6f86519b3483b4cc754b42bddc98617de14cef2b;hpb=61e2111852fd6923947b1b0f9731c2a30c8dfb44 diff --git a/lustre/fid/fid_handler.c b/lustre/fid/fid_handler.c index 2562f0f..a681117 100644 --- a/lustre/fid/fid_handler.c +++ b/lustre/fid/fid_handler.c @@ -325,8 +325,17 @@ static int __seq_server_alloc_meta(struct lu_server_seq *seq, rc = seq_server_check_and_alloc_super(env, seq); if (rc < 0) { - CERROR("%s: Allocated super-sequence failed: rc = %d\n", - seq->lss_name, rc); + if (rc == -EINPROGRESS) { + static int printed; + + if (printed++ % 8 == 0) + LCONSOLE_INFO("%s: Waiting to contact MDT0000 " + "to allocate super-sequence\n", + seq->lss_name); + } else { + CERROR("%s: Allocated super-sequence failed: rc = %d\n", + seq->lss_name, rc); + } RETURN(rc); }