From 8d014f5fe98142b79dfa3bcd0d9483a5165f3570 Mon Sep 17 00:00:00 2001 From: Steve French Date: Thu, 9 Sep 2021 00:09:20 -0500 Subject: [PATCH] cifs: move SMB FSCTL definitions to common code The FSCTL definitions are in smbfsctl.h which should be shared by client and server. Move the updated version of smbfsctl.h into smbfs_common and have the client code use it (subsequent patch will change the server to use this common version of the header). Reviewed-by: Ronnie Sahlberg Signed-off-by: Steve French --- fs/cifs/cifspdu.h | 2 +- fs/{cifs => smbfs_common}/smbfsctl.h | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename fs/{cifs => smbfs_common}/smbfsctl.h (100%) diff --git a/fs/cifs/cifspdu.h b/fs/cifs/cifspdu.h index dc920e206336..98e8e5aa0613 100644 --- a/fs/cifs/cifspdu.h +++ b/fs/cifs/cifspdu.h @@ -12,7 +12,7 @@ #include #include -#include "smbfsctl.h" +#include "../smbfs_common/smbfsctl.h" #define CIFS_PROT 0 #define POSIX_PROT (CIFS_PROT+1) diff --git a/fs/cifs/smbfsctl.h b/fs/smbfs_common/smbfsctl.h similarity index 100% rename from fs/cifs/smbfsctl.h rename to fs/smbfs_common/smbfsctl.h -- 2.20.1