From: Arnd Bergmann <arnd@arndb.de> To: linux-kernel@vger.kernel.org Cc: Arnd Bergmann <arnd@arndb.de>, Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>, linux-fsdevel@vger.kernel.org Subject: [PATCH 11/20] hpfs: move to drivers/staging Date: Tue, 25 Jan 2011 23:17:25 +0100 [thread overview] Message-ID: <1295993854-4971-12-git-send-email-arnd@arndb.de> (raw) In-Reply-To: <1295993854-4971-1-git-send-email-arnd@arndb.de> hpfs has not seen a single patch from its maintainer since the start of the git history, and the user base seems to be completely gone after the end of OS/2. I have tried to keep the file system alive as much as possible through the BKL removal, but this its time seems to have come. If we can find an actual user who is willing to test patches, or even a maintainer that can work on the code, it can easily be moved back into the main tree. If that does not happen, it will get removed from the kernel tree after a few releases in staging/. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Cc: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> Cc: linux-fsdevel@vger.kernel.org --- MAINTAINERS | 2 +- drivers/staging/Kconfig | 2 ++ drivers/staging/Makefile | 1 + {fs => drivers/staging}/hpfs/Kconfig | 3 +++ {fs => drivers/staging}/hpfs/Makefile | 0 drivers/staging/hpfs/TODO | 5 +++++ {fs => drivers/staging}/hpfs/alloc.c | 0 {fs => drivers/staging}/hpfs/anode.c | 0 {fs => drivers/staging}/hpfs/buffer.c | 0 {fs => drivers/staging}/hpfs/dentry.c | 0 {fs => drivers/staging}/hpfs/dir.c | 0 {fs => drivers/staging}/hpfs/dnode.c | 0 {fs => drivers/staging}/hpfs/ea.c | 0 {fs => drivers/staging}/hpfs/file.c | 0 {fs => drivers/staging}/hpfs/hpfs.h | 0 {fs => drivers/staging}/hpfs/hpfs_fn.h | 0 {fs => drivers/staging}/hpfs/inode.c | 0 {fs => drivers/staging}/hpfs/map.c | 0 {fs => drivers/staging}/hpfs/name.c | 0 {fs => drivers/staging}/hpfs/namei.c | 0 {fs => drivers/staging}/hpfs/super.c | 0 fs/Kconfig | 1 - fs/Makefile | 1 - 23 files changed, 12 insertions(+), 3 deletions(-) rename {fs => drivers/staging}/hpfs/Kconfig (85%) rename {fs => drivers/staging}/hpfs/Makefile (100%) create mode 100644 drivers/staging/hpfs/TODO rename {fs => drivers/staging}/hpfs/alloc.c (100%) rename {fs => drivers/staging}/hpfs/anode.c (100%) rename {fs => drivers/staging}/hpfs/buffer.c (100%) rename {fs => drivers/staging}/hpfs/dentry.c (100%) rename {fs => drivers/staging}/hpfs/dir.c (100%) rename {fs => drivers/staging}/hpfs/dnode.c (100%) rename {fs => drivers/staging}/hpfs/ea.c (100%) rename {fs => drivers/staging}/hpfs/file.c (100%) rename {fs => drivers/staging}/hpfs/hpfs.h (100%) rename {fs => drivers/staging}/hpfs/hpfs_fn.h (100%) rename {fs => drivers/staging}/hpfs/inode.c (100%) rename {fs => drivers/staging}/hpfs/map.c (100%) rename {fs => drivers/staging}/hpfs/name.c (100%) rename {fs => drivers/staging}/hpfs/namei.c (100%) rename {fs => drivers/staging}/hpfs/super.c (100%) diff --git a/MAINTAINERS b/MAINTAINERS index 246ee22..fe5ca5f 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -3009,7 +3009,7 @@ HPFS FILESYSTEM M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi S: Maintained -F: fs/hpfs/ +F: drivers/staging/hpfs/ HSO 3G MODEM DRIVER M: Jan Dumon <j.dumon@option.com> diff --git a/drivers/staging/Kconfig b/drivers/staging/Kconfig index 6ac0418..9fc5aa6 100644 --- a/drivers/staging/Kconfig +++ b/drivers/staging/Kconfig @@ -175,5 +175,7 @@ source "drivers/staging/cptm1217/Kconfig" source "drivers/staging/ste_rmi4/Kconfig" +source "drivers/staging/hpfs/Kconfig" + endif # !STAGING_EXCLUDE_BUILD endif # STAGING diff --git a/drivers/staging/Makefile b/drivers/staging/Makefile index a834d2e..878f381 100644 --- a/drivers/staging/Makefile +++ b/drivers/staging/Makefile @@ -68,3 +68,4 @@ obj-$(CONFIG_SND_INTEL_SST) += intel_sst/ obj-$(CONFIG_SPEAKUP) += speakup/ obj-$(CONFIG_TOUCHSCREEN_CLEARPAD_TM1217) += cptm1217/ obj-$(CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4) += ste_rmi4/ +obj-$(CONFIG_HPFS_FS) += hpfs/ diff --git a/fs/hpfs/Kconfig b/drivers/staging/hpfs/Kconfig similarity index 85% rename from fs/hpfs/Kconfig rename to drivers/staging/hpfs/Kconfig index 73476c1..f979319 100644 --- a/fs/hpfs/Kconfig +++ b/drivers/staging/hpfs/Kconfig @@ -11,5 +11,8 @@ config HPFS_FS option in order to be able to read them. Read <file:Documentation/filesystems/hpfs.txt>. + The HPFS code is about to get removed from the kernel and is no + longer supported on SMP or PREEMPT kernels. + To compile this file system support as a module, choose M here: the module will be called hpfs. If unsure, say N. diff --git a/fs/hpfs/Makefile b/drivers/staging/hpfs/Makefile similarity index 100% rename from fs/hpfs/Makefile rename to drivers/staging/hpfs/Makefile diff --git a/drivers/staging/hpfs/TODO b/drivers/staging/hpfs/TODO new file mode 100644 index 0000000..576a01c --- /dev/null +++ b/drivers/staging/hpfs/TODO @@ -0,0 +1,5 @@ +HPFS seems to have no remaining users, and it is getting +increasingly hard to maintain. It will be removed in one +of the next kernel releases unless someone puts effort +into fixing the locking. The new hpfs_lock that replaces +the BKL has not been tested. diff --git a/fs/hpfs/alloc.c b/drivers/staging/hpfs/alloc.c similarity index 100% rename from fs/hpfs/alloc.c rename to drivers/staging/hpfs/alloc.c diff --git a/fs/hpfs/anode.c b/drivers/staging/hpfs/anode.c similarity index 100% rename from fs/hpfs/anode.c rename to drivers/staging/hpfs/anode.c diff --git a/fs/hpfs/buffer.c b/drivers/staging/hpfs/buffer.c similarity index 100% rename from fs/hpfs/buffer.c rename to drivers/staging/hpfs/buffer.c diff --git a/fs/hpfs/dentry.c b/drivers/staging/hpfs/dentry.c similarity index 100% rename from fs/hpfs/dentry.c rename to drivers/staging/hpfs/dentry.c diff --git a/fs/hpfs/dir.c b/drivers/staging/hpfs/dir.c similarity index 100% rename from fs/hpfs/dir.c rename to drivers/staging/hpfs/dir.c diff --git a/fs/hpfs/dnode.c b/drivers/staging/hpfs/dnode.c similarity index 100% rename from fs/hpfs/dnode.c rename to drivers/staging/hpfs/dnode.c diff --git a/fs/hpfs/ea.c b/drivers/staging/hpfs/ea.c similarity index 100% rename from fs/hpfs/ea.c rename to drivers/staging/hpfs/ea.c diff --git a/fs/hpfs/file.c b/drivers/staging/hpfs/file.c similarity index 100% rename from fs/hpfs/file.c rename to drivers/staging/hpfs/file.c diff --git a/fs/hpfs/hpfs.h b/drivers/staging/hpfs/hpfs.h similarity index 100% rename from fs/hpfs/hpfs.h rename to drivers/staging/hpfs/hpfs.h diff --git a/fs/hpfs/hpfs_fn.h b/drivers/staging/hpfs/hpfs_fn.h similarity index 100% rename from fs/hpfs/hpfs_fn.h rename to drivers/staging/hpfs/hpfs_fn.h diff --git a/fs/hpfs/inode.c b/drivers/staging/hpfs/inode.c similarity index 100% rename from fs/hpfs/inode.c rename to drivers/staging/hpfs/inode.c diff --git a/fs/hpfs/map.c b/drivers/staging/hpfs/map.c similarity index 100% rename from fs/hpfs/map.c rename to drivers/staging/hpfs/map.c diff --git a/fs/hpfs/name.c b/drivers/staging/hpfs/name.c similarity index 100% rename from fs/hpfs/name.c rename to drivers/staging/hpfs/name.c diff --git a/fs/hpfs/namei.c b/drivers/staging/hpfs/namei.c similarity index 100% rename from fs/hpfs/namei.c rename to drivers/staging/hpfs/namei.c diff --git a/fs/hpfs/super.c b/drivers/staging/hpfs/super.c similarity index 100% rename from fs/hpfs/super.c rename to drivers/staging/hpfs/super.c diff --git a/fs/Kconfig b/fs/Kconfig index 3db9caa..5a54574 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -184,7 +184,6 @@ source "fs/squashfs/Kconfig" source "fs/freevxfs/Kconfig" source "fs/minix/Kconfig" source "fs/omfs/Kconfig" -source "fs/hpfs/Kconfig" source "fs/qnx4/Kconfig" source "fs/romfs/Kconfig" source "fs/sysv/Kconfig" diff --git a/fs/Makefile b/fs/Makefile index a7f7cef..c920ca9 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -90,7 +90,6 @@ obj-$(CONFIG_NLS) += nls/ obj-$(CONFIG_SYSV_FS) += sysv/ obj-$(CONFIG_CIFS) += cifs/ obj-$(CONFIG_NCP_FS) += ncpfs/ -obj-$(CONFIG_HPFS_FS) += hpfs/ obj-$(CONFIG_NTFS_FS) += ntfs/ obj-$(CONFIG_UFS_FS) += ufs/ obj-$(CONFIG_EFS_FS) += efs/ -- 1.7.1
next prev parent reply other threads:[~2011-01-25 22:22 UTC|newest] Thread overview: 64+ messages / expand[flat|nested] mbox.gz Atom feed top 2011-01-25 22:17 [RFC 00/20] Proposal for remaining BKL users Arnd Bergmann 2011-01-25 22:17 ` Arnd Bergmann 2011-01-25 22:17 ` [PATCH 01/20] drm/i810: remove the BKL Arnd Bergmann 2011-01-25 22:17 ` [PATCH 02/20] drm: remove i830 driver Arnd Bergmann 2011-01-25 22:17 ` [PATCH 03/20] staging/usbip: convert to kthread Arnd Bergmann 2011-01-28 17:53 ` Max Vozeler 2011-01-28 18:48 ` Arnd Bergmann 2011-03-01 22:15 ` Arnd Bergmann 2011-01-25 22:17 ` [PATCH 04/20] staging/cx25721: serialize access to devlist Arnd Bergmann 2011-01-26 16:23 ` Palash Bandyopadhyay 2011-01-31 21:37 ` Greg KH 2011-01-25 22:17 ` [PATCH 05/20] staging/go7007: remove the BKL Arnd Bergmann 2011-01-25 22:17 ` [PATCH 06/20] staging: Remove autofs3 Arnd Bergmann 2011-01-26 7:41 ` H. Peter Anvin 2011-01-25 22:17 ` [PATCH 07/20] staging: remove smbfs Arnd Bergmann 2011-01-25 22:17 ` [PATCH 08/20] adfs: remove the big kernel lock Arnd Bergmann 2011-01-25 22:20 ` Russell King 2011-01-25 22:17 ` [PATCH 09/20] hpfs: rename big kernel lock to hpfs_lock Arnd Bergmann 2011-01-25 22:17 ` [PATCH 10/20] hpfs: replace BKL with a global mutex Arnd Bergmann 2011-01-26 0:15 ` Andi Kleen 2011-01-26 0:19 ` Andi Kleen 2011-01-26 12:48 ` [PATCH v2] hpfs: remove the BKL Arnd Bergmann 2011-01-26 12:50 ` [PATCH 10/20] hpfs: replace BKL with a global mutex Arnd Bergmann 2011-01-26 16:52 ` Andi Kleen 2011-01-27 5:01 ` Nick Piggin 2011-01-27 10:57 ` Miklos Szeredi 2011-01-25 22:17 ` Arnd Bergmann [this message] 2011-02-07 16:17 ` [PATCH 11/20] hpfs: move to drivers/staging Mikulas Patocka 2011-02-07 19:31 ` Arnd Bergmann 2011-01-25 22:17 ` [PATCH 12/20] x25: remove the BKL Arnd Bergmann 2011-01-27 10:07 ` Andrew Hendry 2011-01-27 12:17 ` Arnd Bergmann 2011-01-27 12:38 ` [PATCH v2] " Arnd Bergmann 2011-01-27 13:20 ` Eric Dumazet 2011-01-27 13:43 ` Arnd Bergmann 2011-01-25 22:17 ` [PATCH 13/20] appletalk: move to staging Arnd Bergmann 2011-01-25 22:17 ` [PATCH 14/20] staging/appletalk: remove the BKL Arnd Bergmann 2011-01-25 22:29 ` David Miller 2011-01-26 12:57 ` Arnd Bergmann 2011-01-25 22:17 ` [PATCH 15/20] ufs: " Arnd Bergmann 2011-01-26 2:30 ` Nick Bowler 2011-01-26 12:53 ` Arnd Bergmann 2011-01-27 5:47 ` Nick Piggin 2011-01-27 13:13 ` Arnd Bergmann 2011-01-25 22:17 ` [PATCH 16/20] ipx: " Arnd Bergmann 2011-01-25 22:17 ` [PATCH 17/20] tracing: don't trace " Arnd Bergmann 2011-01-25 22:28 ` Frederic Weisbecker 2011-01-25 22:17 ` [PATCH 18/20] rtmutex-tester: remove BKL tests Arnd Bergmann 2011-01-26 15:00 ` [tip:core/locking] rtmutex-tester: Remove " tip-bot for Arnd Bergmann 2011-02-22 20:57 ` [tip:irq/core] rtmutex: tester: " tip-bot for Arnd Bergmann 2011-01-25 22:17 ` [PATCH 19/20] drivers: remove extraneous includes of smp_lock.h Arnd Bergmann 2011-01-25 22:17 ` [PATCH 20/20] BKL: That's all, folks Arnd Bergmann 2011-01-26 6:19 ` Ingo Molnar 2011-01-26 8:47 ` Alan Cox 2011-01-26 11:01 ` Ingo Molnar 2011-01-26 11:22 ` Thomas Gleixner 2011-01-26 2:22 ` [RFC 00/20] Proposal for remaining BKL users Greg KH 2011-01-26 2:22 ` Greg KH 2011-01-26 11:31 ` Arnd Bergmann 2011-01-26 11:31 ` Arnd Bergmann 2011-01-26 11:58 ` Mauro Carvalho Chehab 2011-01-26 13:45 ` Arnd Bergmann 2011-01-26 13:45 ` Arnd Bergmann 2011-01-26 16:24 ` Palash Bandyopadhyay
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=1295993854-4971-12-git-send-email-arnd@arndb.de \ --to=arnd@arndb.de \ --cc=linux-fsdevel@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=mikulas@artax.karlin.mff.cuni.cz \ --subject='Re: [PATCH 11/20] hpfs: move to drivers/staging' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.