On Sun, Mar 21, 2021 at 09:19:53PM -0500, Steve French wrote:
automated tests failed so will need to dig in a little more and see
what is going on
http://smb3-test-rhel-75.southcentralus.cloudapp.azure.com/#/builders/2/builds/533
<looks>
Oh, bugger... I think I see a braino that might be responsible for that;
whether it's all that's going on or not, that's an obvious bug. Incremental
for that one would be
diff --git a/fs/cifs/dir.c b/fs/cifs/dir.c
index 3febf667d119..ed16f75ac0fa 100644
--- a/fs/cifs/dir.c
+++ b/fs/cifs/dir.c
@@ -132,7 +132,7 @@ build_path_from_dentry_optional_prefix(struct dentry *direntry, void *page,
}
if (dfsplen) {
s -= dfsplen;
- memcpy(page, tcon->treeName, dfsplen);
+ memcpy(s, tcon->treeName, dfsplen);
if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS) {
int i;
for (i = 0; i < dfsplen; i++) {
Folded and force-pushed (same branch). My apologies...