From: Steve French Date: Thu, 9 Sep 2021 05:09:20 +0000 (-0500) Subject: cifs: move SMB FSCTL definitions to common code X-Git-Tag: howlett/maple/20220722_2~2303^2~1 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=8d014f5fe98142b79dfa3bcd0d9483a5165f3570;p=users%2Fjedix%2Flinux-maple.git 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 --- 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