* Patch "fs/cifs: keep guid when assigning fid to fileinfo" has been added to the 4.4-stable tree
@ 2016-10-26 9:26 gregkh
0 siblings, 0 replies; only message in thread
From: gregkh @ 2016-10-26 9:26 UTC (permalink / raw)
To: aaptel, gregkh, smfrench; +Cc: stable, stable-commits
This is a note to let you know that I've just added the patch titled
fs/cifs: keep guid when assigning fid to fileinfo
to the 4.4-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
fs-cifs-keep-guid-when-assigning-fid-to-fileinfo.patch
and it can be found in the queue-4.4 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.
>From 94f873717571c759b7928399cbbddfa3d569bd01 Mon Sep 17 00:00:00 2001
From: Aurelien Aptel <aaptel@suse.com>
Date: Thu, 22 Sep 2016 07:38:50 +0200
Subject: fs/cifs: keep guid when assigning fid to fileinfo
From: Aurelien Aptel <aaptel@suse.com>
commit 94f873717571c759b7928399cbbddfa3d569bd01 upstream.
When we open a durable handle we give a Globally Unique
Identifier (GUID) to the server which we must keep for later reference
e.g. when reopening persistent handles on reconnection.
Without this the GUID generated for a new persistent handle was lost and
16 zero bytes were used instead on re-opening.
Signed-off-by: Aurelien Aptel <aaptel@suse.com>
Signed-off-by: Steve French <smfrench@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
fs/cifs/smb2ops.c | 1 +
1 file changed, 1 insertion(+)
--- a/fs/cifs/smb2ops.c
+++ b/fs/cifs/smb2ops.c
@@ -536,6 +536,7 @@ smb2_set_fid(struct cifsFileInfo *cfile,
server->ops->set_oplock_level(cinode, oplock, fid->epoch,
&fid->purge_cache);
cinode->can_cache_brlcks = CIFS_CACHE_WRITE(cinode);
+ memcpy(cfile->fid.create_guid, fid->create_guid, 16);
}
static void
Patches currently in stable-queue which might be from aaptel@suse.com are
queue-4.4/fix-regression-which-breaks-dfs-mounting.patch
queue-4.4/smb3-guids-should-be-constructed-as-random-but-valid-uuids.patch
queue-4.4/clarify-locking-of-cifs-file-and-tcon-structures-and-make-more-granular.patch
queue-4.4/fs-cifs-keep-guid-when-assigning-fid-to-fileinfo.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2016-10-26 9:26 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-26 9:26 Patch "fs/cifs: keep guid when assigning fid to fileinfo" has been added to the 4.4-stable tree gregkh
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).