From 28581573b261819c65d6a9fe6a9de5987d64fc46 Mon Sep 17 00:00:00 2001 From: Erez Zadok Date: Sat, 7 May 2022 16:48:03 -0400 Subject: [PATCH] wrapfs: change http URLs to https --- Documentation/filesystems/wrapfs.txt | 4 ++-- MAINTAINERS | 2 +- fs/wrapfs/Kconfig | 2 +- fs/wrapfs/main.c | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Documentation/filesystems/wrapfs.txt b/Documentation/filesystems/wrapfs.txt index daa313b2ac69..a0fc9f90b291 100644 --- a/Documentation/filesystems/wrapfs.txt +++ b/Documentation/filesystems/wrapfs.txt @@ -1,7 +1,7 @@ Wrapfs: a null-layer (aka wrapper) stackable file system Maintainer: Erez Zadok -Web Site: +Web Site: ------------------------------------------------------------------------------ MOTIVATION: @@ -44,7 +44,7 @@ This is a brief description of how Wrapfs operates. For more information, see the full paper published in Linux Expo 1999, titled "A Stackable File System Interface For Linux": - + The basic function of a stackable file system is to pass an operation and its arguments to the lower-level file system. For every VFS object (inode, diff --git a/MAINTAINERS b/MAINTAINERS index 3435a46bb5da..8865746d6002 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -9058,7 +9058,7 @@ F: Documentation/workqueue.txt WRAPFS M: Erez Zadok L: wrapfs@filesystems.org -W: http://wrapfs.filesystems.org/ +W: https://wrapfs.filesystems.org/ T: git git.kernel.org/pub/scm/linux/kernel/git/ezk/wrapfs.git S: Maintained F: Documentation/filesystems/wrapfs.txt diff --git a/fs/wrapfs/Kconfig b/fs/wrapfs/Kconfig index a495c7d05d28..6be29e8ba3d4 100644 --- a/fs/wrapfs/Kconfig +++ b/fs/wrapfs/Kconfig @@ -5,4 +5,4 @@ config WRAP_FS operations to the lower layer. It is designed as a useful template for developing or debugging other stackable file systems, and more (see Documentation/filesystems/wrapfs.txt). See - for details. + for details. diff --git a/fs/wrapfs/main.c b/fs/wrapfs/main.c index 16394ba43e8b..14a85cfc2b37 100644 --- a/fs/wrapfs/main.c +++ b/fs/wrapfs/main.c @@ -167,9 +167,9 @@ static void __exit exit_wrapfs_fs(void) } MODULE_AUTHOR("Erez Zadok, Filesystems and Storage Lab, Stony Brook University" - " (http://www.fsl.cs.sunysb.edu/)"); + " (https://www.fsl.cs.sunysb.edu/)"); MODULE_DESCRIPTION("Wrapfs " WRAPFS_VERSION - " (http://wrapfs.filesystems.org/)"); + " (https://wrapfs.filesystems.org/)"); MODULE_LICENSE("GPL"); module_init(init_wrapfs_fs); -- 2.34.1