All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] final round of SCSI updates for the 4.8+ merge window
@ 2016-10-14  6:33 James Bottomley
  2016-10-14 22:51 ` Finn Thain
  0 siblings, 1 reply; 3+ messages in thread
From: James Bottomley @ 2016-10-14  6:33 UTC (permalink / raw)
  To: Andrew Morton, Linus Torvalds; +Cc: linux-scsi, linux-kernel

This is just a set of minor updates and fixes which weren't quite ready
in time for the first pull request.  The only real thing of note is
Mike Christie is stepping down as Maintainer of iscsi to be replaced by
Lee Duncan and Chris Leech.

The patch is available here:

git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git scsi-misc

The short changelog is:

Baoyou Xie (1):
      scsi: be2iscsi: mark symbols static where possible

Joao Pinto (1):
      scsi: ufs: Kconfig fix

Kyuho Choi (1):
      scsi: ufs: Enable no vccq quirk for skhynix device

Lee Duncan (1):
      MAINTAINERS: Update open-iscsi maintainers

Ondrej Zary (3):
      scsi: g_NCR5380: Stop using scsi_module.c
      scsi: g_NCR5380: Reduce overrides[] from array to struct
      scsi: g_NCR5380: Remove deprecated __setup

Varun Prakash (1):
      scsi: cxgb4i: Set completion bit in work request

Wei Yongjun (1):
      scsi: ufs: Fix error return code in ufshcd_init()

Zang Leigang (1):
      scsi: ufs: Data Segment only needed for WRITE DESCRIPTOR

And the diffstat:


 Documentation/scsi/g_NCR5380.txt   |  34 +-
 MAINTAINERS                        |   6 +-
 drivers/scsi/be2iscsi/be_main.c    |  12 +-
 drivers/scsi/cxgbi/cxgb4i/cxgb4i.c |   5 +
 drivers/scsi/g_NCR5380.c           | 699 ++++++++++++++++---------------------
 drivers/scsi/g_NCR5380.h           |   8 -
 drivers/scsi/ufs/Kconfig           |   2 +-
 drivers/scsi/ufs/ufs_quirks.h      |   2 +
 drivers/scsi/ufs/ufshcd.c          |  10 +-
 9 files changed, 345 insertions(+), 433 deletions(-)

James

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] final round of SCSI updates for the 4.8+ merge window
  2016-10-14  6:33 [GIT PULL] final round of SCSI updates for the 4.8+ merge window James Bottomley
@ 2016-10-14 22:51 ` Finn Thain
  2016-10-17 18:18   ` Martin K. Petersen
  0 siblings, 1 reply; 3+ messages in thread
From: Finn Thain @ 2016-10-14 22:51 UTC (permalink / raw)
  To: James Bottomley; +Cc: Andrew Morton, Linus Torvalds, linux-scsi, linux-kernel


On Fri, 14 Oct 2016, James Bottomley wrote:

> This is just a set of minor updates and fixes which weren't quite ready
> in time for the first pull request.  The only real thing of note is
> Mike Christie is stepping down as Maintainer of iscsi to be replaced by
> Lee Duncan and Chris Leech.
> 
> The patch is available here:
> 
> git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git scsi-misc
> 
> The short changelog is:
> 
> Baoyou Xie (1):
>       scsi: be2iscsi: mark symbols static where possible
> 
> Joao Pinto (1):
>       scsi: ufs: Kconfig fix
> 
> Kyuho Choi (1):
>       scsi: ufs: Enable no vccq quirk for skhynix device
> 
> Lee Duncan (1):
>       MAINTAINERS: Update open-iscsi maintainers
> 
> Ondrej Zary (3):
>       scsi: g_NCR5380: Stop using scsi_module.c

I believe that patch introduces an .init.text section mismatch, that I 
failed to notice when I reviewed it. So you may want Arnd Bergmann's fix 
which is commit 8f087c089dae5 ("scsi: NCR5380: no longer mark irq probing 
as __init") in mkp-scsi/4.10/scsi-queue.

-- 

>       scsi: g_NCR5380: Reduce overrides[] from array to struct
>       scsi: g_NCR5380: Remove deprecated __setup
> 
> Varun Prakash (1):
>       scsi: cxgb4i: Set completion bit in work request
> 
> Wei Yongjun (1):
>       scsi: ufs: Fix error return code in ufshcd_init()
> 
> Zang Leigang (1):
>       scsi: ufs: Data Segment only needed for WRITE DESCRIPTOR
> 
> And the diffstat:
> 
> 
>  Documentation/scsi/g_NCR5380.txt   |  34 +-
>  MAINTAINERS                        |   6 +-
>  drivers/scsi/be2iscsi/be_main.c    |  12 +-
>  drivers/scsi/cxgbi/cxgb4i/cxgb4i.c |   5 +
>  drivers/scsi/g_NCR5380.c           | 699 ++++++++++++++++---------------------
>  drivers/scsi/g_NCR5380.h           |   8 -
>  drivers/scsi/ufs/Kconfig           |   2 +-
>  drivers/scsi/ufs/ufs_quirks.h      |   2 +
>  drivers/scsi/ufs/ufshcd.c          |  10 +-
>  9 files changed, 345 insertions(+), 433 deletions(-)
> 
> James
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] final round of SCSI updates for the 4.8+ merge window
  2016-10-14 22:51 ` Finn Thain
@ 2016-10-17 18:18   ` Martin K. Petersen
  0 siblings, 0 replies; 3+ messages in thread
From: Martin K. Petersen @ 2016-10-17 18:18 UTC (permalink / raw)
  To: Finn Thain
  Cc: James Bottomley, Andrew Morton, Linus Torvalds, linux-scsi, linux-kernel

>>>>> "Finn" == Finn Thain <fthain@telegraphics.com.au> writes:

>> Ondrej Zary (3): scsi: g_NCR5380: Stop using scsi_module.c

Finn> I believe that patch introduces an .init.text section mismatch,
Finn> that I failed to notice when I reviewed it. So you may want Arnd
Finn> Bergmann's fix which is commit 8f087c089dae5 ("scsi: NCR5380: no
Finn> longer mark irq probing as __init") in mkp-scsi/4.10/scsi-queue.

Queued in 4.9/scsi-fixes.

-- 
Martin K. Petersen	Oracle Linux Engineering

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-10-17 18:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-14  6:33 [GIT PULL] final round of SCSI updates for the 4.8+ merge window James Bottomley
2016-10-14 22:51 ` Finn Thain
2016-10-17 18:18   ` Martin K. Petersen

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.