* File join has been disabled in this release, refer to Bugzilla
16929.
* A new Lustre ADIO driver is available for MPICH2-1.0.7.
- * NFS export disabled when stack size < 8192. Since the NFSv4 export of
+ * NFS export disabled when stack size < 8192. Since the NFSv4 export of
Lustre filesystem with 4K stack may cause a stack overflow. For more
information, please refer to bugzilla 17630.
+Severity : normal
+Frequency : start MDS on uncleanly shutdowned MDS device
+Bugzilla : 18049
+Descriptoin: aborting recovery hang on MDS
+Details : don't throttle destroy RPCs for the MDT.
+
Severity : major
Frequency : on remount
Bugzilla : 18018
Severity : minor
Frequency : always
Bugzilla : 16693
-Description: shrink LOV EAs before replying
+Description: shrink LOV EAs before replying
Details : correctly adjust LOV EA buffer for reply.
Severity : normal
Frequency : rare, need ACLs on inode.
Bugzilla : 16492
Description: client can't handle ost additional correctly
-Details : if ost was added after client connected to mds client can have
+Details : if ost was added after client connected to mds client can have
hit lnet_try_match_md ... to big messages to wide striped files.
in this case need teach client to handle config events about add
lov target and update client max ea size at that event.
RETURN(-ENOMEM);
req->rq_request_portal = OST_IO_PORTAL; /* bug 7198 */
- req->rq_interpret_reply = osc_destroy_interpret;
ptlrpc_at_set_req_timeout(req);
body = lustre_msg_buf(req->rq_reqmsg, REQ_REC_OFF, sizeof(*body));
memcpy(&body->oa, oa, sizeof(*oa));
ptlrpc_req_set_repsize(req, 2, size);
- if (!osc_can_send_destroy(cli)) {
- struct l_wait_info lwi = { 0 };
-
- /*
- * Wait until the number of on-going destroy RPCs drops
- * under max_rpc_in_flight
- */
- l_wait_event_exclusive(cli->cl_destroy_waitq,
- osc_can_send_destroy(cli), &lwi);
+ /* don't throttle destroy RPCs for the MDT */
+ if (!(cli->cl_import->imp_connect_flags_orig & OBD_CONNECT_MDS)) {
+ req->rq_interpret_reply = osc_destroy_interpret;
+ if (!osc_can_send_destroy(cli)) {
+ struct l_wait_info lwi = { 0 };
+
+ /*
+ * Wait until the number of on-going destroy RPCs drops
+ * under max_rpc_in_flight
+ */
+ l_wait_event_exclusive(cli->cl_destroy_waitq,
+ osc_can_send_destroy(cli), &lwi);
+ }
}
/* Do not wait for response */
#if defined(__KERNEL__) && defined(__linux__)
if(!(PageLocked(oap->oap_page) &&
(CheckWriteback(oap->oap_page, cmd) || oap->oap_oig !=NULL))) {
- CDEBUG(D_PAGE, "page %p lost wb %lx/%x\n",
+ CDEBUG(D_PAGE, "page %p lost wb %lx/%x\n",
oap->oap_page, (long)oap->oap_page->flags, oap->oap_async_flags);
LBUG();
}
rc = llog_setup(obd, LLOG_SIZE_REPL_CTXT, tgt, count, NULL,
&osc_size_repl_logops);
if (rc) {
- struct llog_ctxt *ctxt =
+ struct llog_ctxt *ctxt =
llog_get_context(obd, LLOG_MDS_OST_ORIG_CTXT);
if (ctxt)
llog_cleanup(ctxt);
ctxt = llog_get_context(obd, LLOG_SIZE_REPL_CTXT);
if (ctxt) {
if (obd->u.cli.cl_conn_count == 1) {
- /* Flush any remaining cancel messages out to the
+ /* Flush any remaining cancel messages out to the
* target */
llog_sync(ctxt, exp);
}
llog_ctxt_put(ctxt);
} else {
- CDEBUG(D_HA, "No LLOG_SIZE_REPL_CTXT found in obd %p\n",
+ CDEBUG(D_HA, "No LLOG_SIZE_REPL_CTXT found in obd %p\n",
obd);
}