]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
fs: remove the special !CONFIG_BLOCK def_blk_fops
authorChristoph Hellwig <hch@lst.de>
Mon, 8 May 2023 14:44:05 +0000 (07:44 -0700)
committerJens Axboe <axboe@kernel.dk>
Sat, 20 May 2023 01:48:53 +0000 (19:48 -0600)
def_blk_fops always returns -ENODEV, which dosn't match the return value
of a non-existing block device with CONFIG_BLOCK, which is -ENXIO.
Just remove the extra implementation and fall back to the default
no_open_fops that always returns -ENXIO.

Fixes: 9361401eb761 ("[PATCH] BLOCK: Make it possible to disable the block layer [try #6]")
Signed-off-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20230508144405.41792-1-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/Makefile
fs/inode.c
fs/no-block.c [deleted file]

index 834f1c3dba4642330c38afe14eb38d78727168fa..4709eba1303c60b559da1362d3b0933e0b1aebf9 100644 (file)
@@ -17,14 +17,8 @@ obj-y :=     open.o read_write.o file_table.o super.o \
                fs_types.o fs_context.o fs_parser.o fsopen.o init.o \
                kernel_read_file.o mnt_idmapping.o remap_range.o
 
-ifeq ($(CONFIG_BLOCK),y)
-obj-y +=       buffer.o mpage.o
-else
-obj-y +=       no-block.o
-endif
-
-obj-$(CONFIG_PROC_FS) += proc_namespace.o
-
+obj-$(CONFIG_BLOCK)            += buffer.o mpage.o
+obj-$(CONFIG_PROC_FS)          += proc_namespace.o
 obj-$(CONFIG_LEGACY_DIRECT_IO) += direct-io.o
 obj-y                          += notify/
 obj-$(CONFIG_EPOLL)            += eventpoll.o
index 577799b7855f6f91c75a6f100877811e3a853d08..4d6a1544e95b7f5512164a3206b773aa1c30bef9 100644 (file)
@@ -2264,7 +2264,8 @@ void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
                inode->i_fop = &def_chr_fops;
                inode->i_rdev = rdev;
        } else if (S_ISBLK(mode)) {
-               inode->i_fop = &def_blk_fops;
+               if (IS_ENABLED(CONFIG_BLOCK))
+                       inode->i_fop = &def_blk_fops;
                inode->i_rdev = rdev;
        } else if (S_ISFIFO(mode))
                inode->i_fop = &pipefifo_fops;
diff --git a/fs/no-block.c b/fs/no-block.c
deleted file mode 100644 (file)
index 481c0f0..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0-or-later
-/* no-block.c: implementation of routines required for non-BLOCK configuration
- *
- * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
- * Written by David Howells (dhowells@redhat.com)
- */
-
-#include <linux/kernel.h>
-#include <linux/fs.h>
-
-static int no_blkdev_open(struct inode * inode, struct file * filp)
-{
-       return -ENODEV;
-}
-
-const struct file_operations def_blk_fops = {
-       .open           = no_blkdev_open,
-       .llseek         = noop_llseek,
-};