Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1438404 > unrolled thread
| Started by | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| First post | 2016-07-07 11:00 +0200 |
| Last post | 2016-07-11 22:30 +0200 |
| Articles | 5 — 4 participants |
Back to article view | Back to linux.kernel
[PATCH] nvme-loop: add configfs dependency Arnd Bergmann <arnd@arndb.de> - 2016-07-07 11:00 +0200
Re: [PATCH] nvme-loop: add configfs dependency Jens Axboe <axboe@kernel.dk> - 2016-07-07 16:40 +0200
Re: [PATCH] nvme-loop: add configfs dependency Christoph Hellwig <hch@lst.de> - 2016-07-10 14:20 +0200
Re: [PATCH] nvme-loop: add configfs dependency J Freyensee <james_p_freyensee@linux.intel.com> - 2016-07-11 18:20 +0200
Re: [PATCH] nvme-loop: add configfs dependency Arnd Bergmann <arnd@arndb.de> - 2016-07-11 22:30 +0200
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2016-07-07 11:00 +0200 |
| Subject | [PATCH] nvme-loop: add configfs dependency |
| Message-ID | <rSdk6-4BD-23@gated-at.bofh.it> |
CONFIG_NVME_TARGET has a correct CONFIG_CONFIGFS_FS dependency, but the
newly added NVME_TARGET_LOOP is missing this, resulting in a link
failure:
drivers/nvme/built-in.o: In function `nvmet_init_configfs':
loop.c:(.init.text+0x2a0): undefined reference to `config_group_init'
loop.c:(.init.text+0x2c0): undefined reference to `config_group_init_type_name'
loop.c:(.init.text+0x318): undefined reference to `configfs_register_subsystem'
drivers/nvme/built-in.o: In function `nvmet_exit_configfs':
loop.c:(.exit.text+0x9c): undefined reference to `configfs_unregister_subsystem'
This adds the same dependency here.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 3a85a5de29ea ("nvme-loop: add a NVMe loopback host driver")
---
drivers/nvme/target/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/nvme/target/Kconfig b/drivers/nvme/target/Kconfig
index b77ce4350695..6bbd7890c3ad 100644
--- a/drivers/nvme/target/Kconfig
+++ b/drivers/nvme/target/Kconfig
@@ -16,6 +16,7 @@ config NVME_TARGET
config NVME_TARGET_LOOP
tristate "NVMe loopback device support"
depends on BLK_DEV_NVME
+ depends on CONFIGFS_FS
select NVME_TARGET
select NVME_FABRICS
select SG_POOL
--
2.9.0
[toc] | [next] | [standalone]
| From | Jens Axboe <axboe@kernel.dk> |
|---|---|
| Date | 2016-07-07 16:40 +0200 |
| Message-ID | <rSiD7-8em-15@gated-at.bofh.it> |
| In reply to | #1438404 |
On 07/07/2016 03:01 AM, Arnd Bergmann wrote: > CONFIG_NVME_TARGET has a correct CONFIG_CONFIGFS_FS dependency, but the > newly added NVME_TARGET_LOOP is missing this, resulting in a link > failure: > > drivers/nvme/built-in.o: In function `nvmet_init_configfs': > loop.c:(.init.text+0x2a0): undefined reference to `config_group_init' > loop.c:(.init.text+0x2c0): undefined reference to `config_group_init_type_name' > loop.c:(.init.text+0x318): undefined reference to `configfs_register_subsystem' > drivers/nvme/built-in.o: In function `nvmet_exit_configfs': > loop.c:(.exit.text+0x9c): undefined reference to `configfs_unregister_subsystem' > > This adds the same dependency here. Thanks Arnd, applied. -- Jens Axboe
[toc] | [prev] | [next] | [standalone]
| From | Christoph Hellwig <hch@lst.de> |
|---|---|
| Date | 2016-07-10 14:20 +0200 |
| Message-ID | <rTlSh-wz-5@gated-at.bofh.it> |
| In reply to | #1438649 |
On Thu, Jul 07, 2016 at 08:35:17AM -0600, Jens Axboe wrote: > Thanks Arnd, applied. Actually I think we should replace the select with the depends. In fact I though I had done that a while ago, but I must have messed it up. Btw - do you plan to grab patches directly from the list now or do you want me to queue them up? There are a few more pending on the list that should go in: http://lists.infradead.org/pipermail/linux-nvme/2016-June/005150.html (whole series) http://lists.infradead.org/pipermail/linux-nvme/2016-July/005290.html (needs the attribution fixed to be from Ming) http://lists.infradead.org/pipermail/linux-nvme/2016-July/005318.html
[toc] | [prev] | [next] | [standalone]
| From | J Freyensee <james_p_freyensee@linux.intel.com> |
|---|---|
| Date | 2016-07-11 18:20 +0200 |
| Message-ID | <rTM66-10U-7@gated-at.bofh.it> |
| In reply to | #1440091 |
On Sun, 2016-07-10 at 14:14 +0200, Christoph Hellwig wrote: > On Thu, Jul 07, 2016 at 08:35:17AM -0600, Jens Axboe wrote: > > Thanks Arnd, applied. > > Actually I think we should replace the select with the depends. In > fact I though I had done that a while ago, but I must have messed it > up. > > Btw - do you plan to grab patches directly from the list now or > do you want me to queue them up? There are a few more pending on > the list that should go in: > > http://lists.infradead.org/pipermail/linux-nvme/2016-June/005150.html > (whole series) > > http://lists.infradead.org/pipermail/linux-nvme/2016-July/005290.html > (needs the attribution fixed to be from Ming) I can re-send the patch changing "Fix by: " to "From: " if that helps. Jay
[toc] | [prev] | [next] | [standalone]
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2016-07-11 22:30 +0200 |
| Message-ID | <rTQ01-3tm-17@gated-at.bofh.it> |
| In reply to | #1440091 |
On Sunday, July 10, 2016 2:14:17 PM CEST Christoph Hellwig wrote:
> On Thu, Jul 07, 2016 at 08:35:17AM -0600, Jens Axboe wrote:
> > Thanks Arnd, applied.
>
> Actually I think we should replace the select with the depends. In
> fact I though I had done that a while ago, but I must have messed it up.
Makes sense. I ran into the same problem on NVME_TARGET_RDMA now,
which otherwise needs dependencies on both CONFIG_BLOCK and
CONFIGFS_FS:
warning: (NVME_TARGET_LOOP && NVME_TARGET_RDMA) selects NVME_TARGET which has unmet direct dependencies (BLOCK && CONFIGFS_FS)
0xA002B368 Mon Jul 11 18:00:45 CEST 2016 failed
In file included from ../drivers/nvme/target/core.c:16:0:
drivers/nvme/target/nvmet.h:222:14: error: field 'inline_bio' has incomplete type
struct bio inline_bio;
^~~~~~~~~~
drivers/nvme/target/core.c: In function 'nvmet_async_event_work':
drivers/nvme/target/core.c:98:3: error: implicit declaration of function 'kfree' [-Werror=implicit-function-declaration]
kfree(aen);
^~~~~
../drivers/nvme/target/core.c: In function 'nvmet_ns_enable':
../drivers/nvme/target/core.c:269:13: error: implicit declaration of function 'blkdev_get_by_path' [-Werror=implicit-function-declaration]
ns->bdev = blkdev_get_by_path(ns->device_path, FMODE_READ | FMODE_WRITE,
Folding in my patch below should address that too.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
diff --git a/drivers/nvme/target/Kconfig b/drivers/nvme/target/Kconfig
index 0be9e3d4c352..a5c31cbeb481 100644
--- a/drivers/nvme/target/Kconfig
+++ b/drivers/nvme/target/Kconfig
@@ -16,8 +16,7 @@ config NVME_TARGET
config NVME_TARGET_LOOP
tristate "NVMe loopback device support"
depends on BLK_DEV_NVME
- depends on CONFIGFS_FS
- select NVME_TARGET
+ depends on NVME_TARGET
select NVME_FABRICS
select SG_POOL
help
@@ -29,7 +28,7 @@ config NVME_TARGET_LOOP
config NVME_TARGET_RDMA
tristate "NVMe over Fabrics RDMA target support"
depends on INFINIBAND
- select NVME_TARGET
+ depends on NVME_TARGET
help
This enables the NVMe RDMA target support, which allows exporting NVMe
devices over RDMA.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web