b=12696
i=johann
i=adilger
Severity : normal
Frequency : rare
Bugzilla : 12696
Description: ASSERTION(imp->imp_conn_current) failed
Details : an assertion failure is hit if a client node boots and attempts to
mount a lustre filesystem faster than RECONNECT_INTERVAL seconds.
* bug fixes
Severity : normal
+Frequency : rare
+Bugzilla : 12696
+Description: ASSERTION(imp->imp_conn_current) failed
+Details : an assertion failure is hit if a client node boots and attempts to
+ mount a lustre filesystem faster than RECONNECT_INTERVAL seconds.
+
+Severity : normal
Frequency : only for i686
Bugzilla : 12695
Description: 1.4.11 RC1 build fails for RHEL 4, i686
else if (cfs_time_before_64(conn->oic_last_attempt,
imp_conn->oic_last_attempt))
imp_conn = conn;
+ } else {
+ /* Exceptionally unlikely case caused by the node
+ * booting and attempting to mount lustre faster than
+ * than RECONNECT_INTERVAL seconds. */
+ if (unlikely(conn->oic_last_attempt == 0)) {
+ imp_conn = conn;
+ break;
+ }
}
}