* [GIT PULL] nvme fabrics patches for 4.10
@ 2016-12-04 22:02 Sagi Grimberg
2016-12-05 17:42 ` Jens Axboe
0 siblings, 1 reply; 4+ messages in thread
From: Sagi Grimberg @ 2016-12-04 22:02 UTC (permalink / raw)
Hey Jens,
The major addition here is the nvme FC transport implementation
from James.
What else:
- some cleanups and memory leak fixes in the host side fabrics code from Bart
- possible rcu violation fix from Sasha
- logging change from Max
- small include cleanup
Please pull from:
git://git.infradead.org/nvme-fabrics.git nvmf-4.10
----------------------------------------------------------------
Bart Van Assche (5):
nvmet-rdma: Fix REJ status code
nvme-fabrics: Fix memory leaks in nvmf_parse_options()
nvme-fabrics: Fix a memory leak in an nvmf_create_ctrl() error path
nvme/scsi: Remove set-but-not-used variables
nvme-fabrics: Adjust source code indentation
James Smart (10):
parser: add u64 number parser
nvme-fabrics: set sqe.command_id in core not transports
nvme-fabrics: patch target code in prep for FC transport support
Add type 0x28 NVME type code to scsi fc headers
nvme-fabrics: Add FC transport error codes to nvme.h
nvme-fabrics: Add FC transport FC-NVME definitions
nvme-fabrics: Add FC transport LLDD api definitions
nvme-fabrics: Add host support for FC transport
nvme-fabrics: Add target support for FC transport
nvme-fabrics: Add FC LLDD loopback driver to test FC-NVME
Max Gurtovoy (2):
nvmet-rdma: align to generic ib_event logging helper
nvme-rdma: align to generic ib_event logging helper
Sagi Grimberg (1):
nvme-rdma: remove redundant define
Samuel Jones (1):
nvme-rdma: force queue size to respect controller capability
Solganik Alexander (1):
nvmet: Fix possible infinite loop triggered on hot namespace removal
MAINTAINERS | 10 +
drivers/nvme/host/Kconfig | 17 +
drivers/nvme/host/Makefile | 3 +
drivers/nvme/host/core.c | 3 +-
drivers/nvme/host/fabrics.c | 7 +-
drivers/nvme/host/fc.c | 2586 ++++++++++++++++++++++++++++++++++++++++
drivers/nvme/host/pci.c | 1 -
drivers/nvme/host/rdma.c | 14 +-
drivers/nvme/host/scsi.c | 11 +-
drivers/nvme/target/Kconfig | 24 +
drivers/nvme/target/Makefile | 4 +
drivers/nvme/target/configfs.c | 20 +-
drivers/nvme/target/core.c | 14 +-
drivers/nvme/target/fc.c | 2288 +++++++++++++++++++++++++++++++++++
drivers/nvme/target/fcloop.c | 1148 ++++++++++++++++++
drivers/nvme/target/loop.c | 1 -
drivers/nvme/target/nvmet.h | 6 +-
drivers/nvme/target/rdma.c | 8 +-
include/linux/nvme-fc-driver.h | 851 +++++++++++++
include/linux/nvme-fc.h | 268 +++++
include/linux/nvme.h | 13 +
include/linux/parser.h | 1 +
include/uapi/scsi/fc/fc_fs.h | 2 +
lib/parser.c | 47 +
24 files changed, 7313 insertions(+), 34 deletions(-)
create mode 100644 drivers/nvme/host/fc.c
create mode 100644 drivers/nvme/target/fc.c
create mode 100644 drivers/nvme/target/fcloop.c
create mode 100644 include/linux/nvme-fc-driver.h
create mode 100644 include/linux/nvme-fc.h
^ permalink raw reply [flat|nested] 4+ messages in thread
* [GIT PULL] nvme fabrics patches for 4.10
2016-12-04 22:02 [GIT PULL] nvme fabrics patches for 4.10 Sagi Grimberg
@ 2016-12-05 17:42 ` Jens Axboe
2016-12-06 9:03 ` Sagi Grimberg
0 siblings, 1 reply; 4+ messages in thread
From: Jens Axboe @ 2016-12-05 17:42 UTC (permalink / raw)
On 12/04/2016 03:02 PM, Sagi Grimberg wrote:
> Hey Jens,
>
> The major addition here is the nvme FC transport implementation
> from James.
>
> What else:
> - some cleanups and memory leak fixes in the host side fabrics code from Bart
> - possible rcu violation fix from Sasha
> - logging change from Max
> - small include cleanup
>
> Please pull from:
>
> git://git.infradead.org/nvme-fabrics.git nvmf-4.10
Ehm no. This isn't based on my 4.10 branch, hence I get a ton of
unrelated commits if I pull this in. Please rebase this on top of
4.10/block first, thanks.
--
Jens Axboe
^ permalink raw reply [flat|nested] 4+ messages in thread
* [GIT PULL] nvme fabrics patches for 4.10
2016-12-05 17:42 ` Jens Axboe
@ 2016-12-06 9:03 ` Sagi Grimberg
2016-12-06 15:07 ` Jens Axboe
0 siblings, 1 reply; 4+ messages in thread
From: Sagi Grimberg @ 2016-12-06 9:03 UTC (permalink / raw)
>> Hey Jens,
>>
>> The major addition here is the nvme FC transport implementation
>> from James.
>>
>> What else:
>> - some cleanups and memory leak fixes in the host side fabrics code from Bart
>> - possible rcu violation fix from Sasha
>> - logging change from Max
>> - small include cleanup
>>
>> Please pull from:
>>
>> git://git.infradead.org/nvme-fabrics.git nvmf-4.10
>
> Ehm no. This isn't based on my 4.10 branch, hence I get a ton of
> unrelated commits if I pull this in. Please rebase this on top of
> 4.10/block first, thanks.
Sorry for that,
I updated nvmf-4.10 to apply on top of for-4.10/block.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [GIT PULL] nvme fabrics patches for 4.10
2016-12-06 9:03 ` Sagi Grimberg
@ 2016-12-06 15:07 ` Jens Axboe
0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2016-12-06 15:07 UTC (permalink / raw)
On 12/06/2016 02:03 AM, Sagi Grimberg wrote:
>
>
>>> Hey Jens,
>>>
>>> The major addition here is the nvme FC transport implementation
>>> from James.
>>>
>>> What else:
>>> - some cleanups and memory leak fixes in the host side fabrics code from Bart
>>> - possible rcu violation fix from Sasha
>>> - logging change from Max
>>> - small include cleanup
>>>
>>> Please pull from:
>>>
>>> git://git.infradead.org/nvme-fabrics.git nvmf-4.10
>>
>> Ehm no. This isn't based on my 4.10 branch, hence I get a ton of
>> unrelated commits if I pull this in. Please rebase this on top of
>> 4.10/block first, thanks.
>
> Sorry for that,
>
> I updated nvmf-4.10 to apply on top of for-4.10/block.
Much better - pulled it in for 4.10, thanks.
--
Jens Axboe
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-12-06 15:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-04 22:02 [GIT PULL] nvme fabrics patches for 4.10 Sagi Grimberg
2016-12-05 17:42 ` Jens Axboe
2016-12-06 9:03 ` Sagi Grimberg
2016-12-06 15:07 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).