]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
authorLinus Torvalds <torvalds@linux-foundation.org>
Thu, 27 Mar 2025 02:57:34 +0000 (19:57 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 27 Mar 2025 02:57:34 +0000 (19:57 -0700)
Pull SCSI updates from James Bottomley:
 "Updates to the usual drivers (scsi_debug, ufs, lpfc, st, fnic, mpi3mr,
  mpt3sas) and the removal of cxlflash.

  The only non-trivial core change is an addition to unit attention
  handling to recognize UAs for power on/reset and new media so the tape
  driver can use it"

* tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: (107 commits)
  scsi: st: Tighten the page format heuristics with MODE SELECT
  scsi: st: ERASE does not change tape location
  scsi: st: Fix array overflow in st_setup()
  scsi: target: tcm_loop: Fix wrong abort tag
  scsi: lpfc: Restore clearing of NLP_UNREG_INP in ndlp->nlp_flag
  scsi: hisi_sas: Fixed failure to issue vendor specific commands
  scsi: fnic: Remove unnecessary NUL-terminations
  scsi: fnic: Remove redundant flush_workqueue() calls
  scsi: core: Use a switch statement when attaching VPD pages
  scsi: ufs: renesas: Add initialization code for R-Car S4-8 ES1.2
  scsi: ufs: renesas: Add reusable functions
  scsi: ufs: renesas: Refactor 0x10ad/0x10af PHY settings
  scsi: ufs: renesas: Remove register control helper function
  scsi: ufs: renesas: Add register read to remove save/set/restore
  scsi: ufs: renesas: Replace init data by init code
  scsi: ufs: dt-bindings: renesas,ufs: Add calibration data
  scsi: mpi3mr: Task Abort EH Support
  scsi: storvsc: Don't report the host packet status as the hv status
  scsi: isci: Make most module parameters static
  scsi: megaraid_sas: Make most module parameters static
  ...

1  2 
Documentation/userspace-api/ioctl/ioctl-number.rst
MAINTAINERS
drivers/scsi/lpfc/lpfc.h
drivers/scsi/lpfc/lpfc_init.c
drivers/scsi/mpt3sas/mpi/mpi2_cnfg.h
drivers/scsi/scsi_debug.c
drivers/ufs/core/ufshcd.c
drivers/ufs/host/ufs-exynos.c
drivers/ufs/host/ufs-qcom.c

diff --cc MAINTAINERS
Simple merge
Simple merge
Simple merge
Simple merge
index fe5c30bb263986727b4d943d43a28ee208cb6aae,523f054912e1477102dcb83a7abc42d43d34ecbb..f0eec4708ddd474e7cb95803b77061fc0adff6f3
@@@ -8701,8 -9351,12 +9351,12 @@@ err_out
  static int sdebug_init_cmd_priv(struct Scsi_Host *shost, struct scsi_cmnd *cmd)
  {
        struct sdebug_scsi_cmd *sdsc = scsi_cmd_priv(cmd);
+       struct sdebug_defer *sd_dp = &sdsc->sd_dp;
  
        spin_lock_init(&sdsc->lock);
 -      hrtimer_init(&sd_dp->hrt, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
 -      sd_dp->hrt.function = sdebug_q_cmd_hrt_complete;
++      hrtimer_setup(&sd_dp->hrt, sdebug_q_cmd_hrt_complete, CLOCK_MONOTONIC,
++                    HRTIMER_MODE_REL_PINNED);
+       INIT_WORK(&sd_dp->ew.work, sdebug_q_cmd_wq_complete);
  
        return 0;
  }
Simple merge
Simple merge
Simple merge