public inbox for linux-ide@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] ata changes for 6.20-rc1
@ 2026-02-13  0:24 Damien Le Moal
  2026-02-13  1:18 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Damien Le Moal @ 2026-02-13  0:24 UTC (permalink / raw)
  To: Linus Torvalds, linux-ide; +Cc: Niklas Cassel

Linus,

The following changes since commit 8f0b4cce4481fb22653697cced8d0d04027cb1e8:

  Linux 6.19-rc1 (2025-12-14 16:05:07 +1200)

are available in the Git repository at:

  ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/libata/linux tags/ata-6.20-rc1

for you to fetch changes up to ff4a46c278ac6a4b3f39be1492a4568b6dcc6105:

  ata: pata_ftide010: Fix some DMA timings (2026-02-04 12:23:23 +0100)

Note that this pull request generates a conflict with the scsi changes. This
conflict is starightforward to resolve. Here is the resulotion applied to
linux-next by Mark Brown:

diff --cc drivers/ata/libata.h
index 9b4e578ad07ec,0e48bd1c0c206..0000000000000
--- a/drivers/ata/libata.h
+++ b/drivers/ata/libata.h
@@@ -165,9 -164,8 +165,10 @@@ extern int ata_scsi_user_scan(struct Sc
  void ata_scsi_sdev_config(struct scsi_device *sdev);
  int ata_scsi_dev_config(struct scsi_device *sdev, struct queue_limits *lim,
  		struct ata_device *dev);
- int __ata_scsi_queuecmd(struct scsi_cmnd *scmd, struct ata_device *dev);
+ enum scsi_qc_status __ata_scsi_queuecmd(struct scsi_cmnd *scmd,
+ 					struct ata_device *dev);
 +void ata_scsi_deferred_qc_work(struct work_struct *work);
 +void ata_scsi_requeue_deferred_qc(struct ata_port *ap);

  /* libata-eh.c */
  extern unsigned int ata_internal_cmd_timeout(struct ata_device *dev, u8 cmd);


----------------------------------------------------------------
ATA changes for 6.20

 - Cleanup IRQ masking in the handling of completed report zones
   commands (Niklas).

 - Improve the handling of Thunderbolt attached devices to speed up
   device removal (Henry).

 - Several patches to generalize the existing max_sec quirks to
   facilitates quirking the maximum command size of buggy drives, many
   of which have recently showed up with the recent increase of the
   default max_sectors block limit (Niklas).

 - Cleanup the ahci-platform and sata dt-bindings schema (Rob,
   Manivannan).

 - Improve device node scan in the ahci-dwc driver (Krzysztof).

 - Remove clang W=1 warnings with the ahci-imx and ahci-xgene drivers
   (Krzysztof).

 - Fix a long standing potential command starvation situation with
   non-NCQ commands issued when NCQ commands are on-going (me).

 - Limit max_sectors to 8191 on the INTEL SSDSC2KG480G8 SSD (Niklas).

 - Remove Vesa Local Bus (VLB) support in the pata_legacy driver
   (Ethan).

 - Simple fixes in the pata_cypress (typo) and pata_ftide010 (timing)
   drivers (Ethan, Linus W.)

----------------------------------------------------------------
Damien Le Moal (2):
      ata: libata-scsi: refactor ata_scsi_translate()
      ata: libata-scsi: avoid Non-NCQ command starvation

Ethan Nelson-Moore (2):
      ata: pata_legacy: remove VLB support
      ata: pata_cypress: fix typo in error message

Henry Tseng (1):
      ata: libata: avoid long timeouts on hot-unplugged SATA DAS

Krzysztof Kozlowski (3):
      ata: ahci-dwc: Simplify with scoped for each OF child loop
      ata: ahci-imx: Fix Wvoid-pointer-to-enum-cast warning
      ata: ahci-xgene: Fix Wvoid-pointer-to-enum-cast warning

Linus Walleij (1):
      ata: pata_ftide010: Fix some DMA timings

Manivannan Sadhasivam (1):
      dt-bindings: ata: sata: Document the graph port

Niklas Cassel (8):
      ata: libata-scsi: Remove superfluous local_irq_save()
      ata: libata: Add ATA_QUIRK_MAX_SEC and convert all device quirks
      ata: libata: Add ata_force_get_fe_for_dev() helper
      ata: libata: Change libata.force to use the generic ATA_QUIRK_MAX_SEC quirk
      ata: libata: Add support to parse equal sign in libata.force
      ata: libata: Add libata.force parameter max_sec
      ata: libata: Allow more quirks
      ata: libata-core: Quirk INTEL SSDSC2KG480G8 max_sectors

Rob Herring (Arm) (1):
      dt-bindings: ata: ahci-platform: Drop unnecessary select schema

 Documentation/admin-guide/kernel-parameters.txt    |   5 +
 .../devicetree/bindings/ata/ahci-platform.yaml     |  20 -
 .../devicetree/bindings/ata/sata-common.yaml       |   3 +
 drivers/ata/Kconfig                                |  17 +-
 drivers/ata/ahci_dwc.c                             |  10 +-
 drivers/ata/ahci_imx.c                             |   2 +-
 drivers/ata/ahci_xgene.c                           |   2 +-
 drivers/ata/libata-core.c                          | 237 ++++--
 drivers/ata/libata-eh.c                            |   9 +-
 drivers/ata/libata-scsi.c                          | 182 ++++-
 drivers/ata/libata.h                               |   3 +
 drivers/ata/pata_cypress.c                         |   2 +-
 drivers/ata/pata_ftide010.c                        |   6 +-
 drivers/ata/pata_legacy.c                          | 867 +--------------------
 include/linux/ata.h                                |   3 -
 include/linux/libata.h                             |  73 +-
 16 files changed, 402 insertions(+), 1039 deletions(-)

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

* Re: [GIT PULL] ata changes for 6.20-rc1
  2026-02-13  0:24 [GIT PULL] ata changes for 6.20-rc1 Damien Le Moal
@ 2026-02-13  1:18 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2026-02-13  1:18 UTC (permalink / raw)
  To: Damien Le Moal; +Cc: Linus Torvalds, linux-ide, Niklas Cassel

The pull request you sent on Fri, 13 Feb 2026 09:24:25 +0900:

> ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/libata/linux tags/ata-6.20-rc1

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/2c75a8d92cf173113d1e43a41cb472cd93561bf8

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

end of thread, other threads:[~2026-02-13  1:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-13  0:24 [GIT PULL] ata changes for 6.20-rc1 Damien Le Moal
2026-02-13  1:18 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox