Message ID | 20210308150050.19902-2-pc@cjr.nz (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/4] cifs: print MIDs in decimal notation | expand |
Reviewed-by: Aurelien Aptel <aaptel@suse.com>
reviewed-by me On Tue, Mar 9, 2021 at 1:02 AM Paulo Alcantara <pc@cjr.nz> wrote: > > A customer has reported that their dmesg were being flooded by > > CIFS: VFS: \\server Cancelling wait for mid xxx cmd: a > CIFS: VFS: \\server Cancelling wait for mid yyy cmd: b > CIFS: VFS: \\server Cancelling wait for mid zzz cmd: c > > because some processes that were performing statfs(2) on the share had > been interrupted due to their automount setup when certain users > logged in and out. > > Change it to FYI as they should be mostly informative rather than > error messages. > > Signed-off-by: Paulo Alcantara (SUSE) <pc@cjr.nz> > --- > fs/cifs/transport.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/fs/cifs/transport.c b/fs/cifs/transport.c > index 7bb1584b3724..f62f512e2cb1 100644 > --- a/fs/cifs/transport.c > +++ b/fs/cifs/transport.c > @@ -1248,7 +1248,7 @@ compound_send_recv(const unsigned int xid, struct cifs_ses *ses, > } > if (rc != 0) { > for (; i < num_rqst; i++) { > - cifs_server_dbg(VFS, "Cancelling wait for mid %llu cmd: %d\n", > + cifs_server_dbg(FYI, "Cancelling wait for mid %llu cmd: %d\n", > midQ[i]->mid, le16_to_cpu(midQ[i]->command)); > send_cancel(server, &rqst[i], midQ[i]); > spin_lock(&GlobalMid_Lock); > -- > 2.30.1 >
diff --git a/fs/cifs/transport.c b/fs/cifs/transport.c index 7bb1584b3724..f62f512e2cb1 100644 --- a/fs/cifs/transport.c +++ b/fs/cifs/transport.c @@ -1248,7 +1248,7 @@ compound_send_recv(const unsigned int xid, struct cifs_ses *ses, } if (rc != 0) { for (; i < num_rqst; i++) { - cifs_server_dbg(VFS, "Cancelling wait for mid %llu cmd: %d\n", + cifs_server_dbg(FYI, "Cancelling wait for mid %llu cmd: %d\n", midQ[i]->mid, le16_to_cpu(midQ[i]->command)); send_cancel(server, &rqst[i], midQ[i]); spin_lock(&GlobalMid_Lock);
A customer has reported that their dmesg were being flooded by CIFS: VFS: \\server Cancelling wait for mid xxx cmd: a CIFS: VFS: \\server Cancelling wait for mid yyy cmd: b CIFS: VFS: \\server Cancelling wait for mid zzz cmd: c because some processes that were performing statfs(2) on the share had been interrupted due to their automount setup when certain users logged in and out. Change it to FYI as they should be mostly informative rather than error messages. Signed-off-by: Paulo Alcantara (SUSE) <pc@cjr.nz> --- fs/cifs/transport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)