|
There are a few messages printed early during module loading and mount that are just noise and could be quieted if the filesystem is just being mounted.
For example:
this is expected if the lnet/ptlrpc modules have loaded, but MDT0000 is not yet started.
Probably the right solution here is to add a global variable that holds the time that the module was first loaded (maybe in obdclass?) and then conditionally quiet this (and some other) messages if, say, less than RECONNECT_DELAY_MAX seconds have elapsed since the module was first loaded.
The "-61 = -ENODATA" error code is expected in this case, and is the only error that could be seen in this case, so ": rc = -61" should just be removed from the message.
|