linux-raid.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* queue_limits fixups and tidyups v2
@ 2024-06-25 14:59 Christoph Hellwig
  2024-06-25 14:59 ` [PATCH 1/8] md: set md-specific flags for all queue limits Christoph Hellwig
                   ` (7 more replies)
  0 siblings, 8 replies; 21+ messages in thread
From: Christoph Hellwig @ 2024-06-25 14:59 UTC (permalink / raw)
  To: Jens Axboe
  Cc: Damien Le Moal, Niklas Cassel, Song Liu, Yu Kuai,
	Martin K. Petersen, Alim Akhtar, Avri Altman, Bart Van Assche,
	linux-block, linux-ide, linux-raid, linux-scsi

Hi Jens,

this series has a few fixes for the queue_limits conversion in the first
few patches and then has a bunch more cleanups and improvements in that
area.

Changes since v1:
 - remove an incorrect use of a flag on the features field
 - add a patch to switch to __bitwise annotations for features and flags
 - update a commit log

Diffstat:
 block/bio-integrity.c     |    2 
 block/blk-map.c           |    2 
 block/blk-settings.c      |   46 +++++----------------
 block/blk-sysfs.c         |    9 ++--
 block/blk.h               |    2 
 block/genhd.c             |    2 
 drivers/ata/libata-scsi.c |    3 -
 drivers/ata/pata_macio.c  |    4 -
 drivers/md/md.c           |   13 +++--
 drivers/md/md.h           |    1 
 drivers/md/raid0.c        |    2 
 drivers/md/raid1.c        |    2 
 drivers/md/raid10.c       |    2 
 drivers/md/raid5.c        |    2 
 drivers/scsi/scsi_lib.c   |    4 -
 drivers/ufs/core/ufshcd.c |    9 ++--
 include/linux/blkdev.h    |  100 +++++++++++++++++++++++-----------------------
 17 files changed, 96 insertions(+), 109 deletions(-)

^ permalink raw reply	[flat|nested] 21+ messages in thread
* queue_limits fixups and tidyups v3
@ 2024-06-26 14:26 Christoph Hellwig
  2024-06-26 14:26 ` [PATCH 1/8] md: set md-specific flags for all queue limits Christoph Hellwig
  0 siblings, 1 reply; 21+ messages in thread
From: Christoph Hellwig @ 2024-06-26 14:26 UTC (permalink / raw)
  To: Jens Axboe
  Cc: Damien Le Moal, Niklas Cassel, Song Liu, Yu Kuai,
	Martin K. Petersen, Alim Akhtar, Avri Altman, Bart Van Assche,
	linux-block, linux-ide, linux-raid, linux-scsi

Hi Jens,

this series has a few fixes for the queue_limits conversion in the first
few patches and then has a bunch more cleanups and improvements in that
area.

Changes since v2:
 - export md_init_stacking_limits
 - use blk_queue_write_cache instead of open coding it
 - various spelling fixes
 - document a new paramter in ufshcd

Changes since v1:
 - remove an incorrect use of a flag on the features field
 - add a patch to switch to __bitwise annotations for features and flags
 - update a commit log

Diffstat:
 block/bio-integrity.c     |    2 
 block/blk-map.c           |    2 
 block/blk-settings.c      |   46 +++++----------------
 block/blk-sysfs.c         |   12 ++---
 block/blk.h               |    2 
 block/genhd.c             |    2 
 drivers/ata/libata-scsi.c |    3 -
 drivers/ata/pata_macio.c  |    4 -
 drivers/md/md.c           |   14 ++++--
 drivers/md/md.h           |    1 
 drivers/md/raid0.c        |    2 
 drivers/md/raid1.c        |    2 
 drivers/md/raid10.c       |    2 
 drivers/md/raid5.c        |    2 
 drivers/scsi/scsi_lib.c   |    4 -
 drivers/ufs/core/ufshcd.c |   10 ++--
 include/linux/blkdev.h    |  100 +++++++++++++++++++++++-----------------------
 17 files changed, 99 insertions(+), 111 deletions(-)

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

end of thread, other threads:[~2024-06-26 14:26 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-25 14:59 queue_limits fixups and tidyups v2 Christoph Hellwig
2024-06-25 14:59 ` [PATCH 1/8] md: set md-specific flags for all queue limits Christoph Hellwig
2024-06-25 21:21   ` Damien Le Moal
2024-06-25 14:59 ` [PATCH 2/8] block: correctly report cache type Christoph Hellwig
2024-06-25 21:22   ` Damien Le Moal
2024-06-26  7:59   ` John Garry
2024-06-25 14:59 ` [PATCH 3/8] block: rename BLK_FLAG_MISALIGNED Christoph Hellwig
2024-06-25 21:23   ` Damien Le Moal
2024-06-26  8:07   ` John Garry
2024-06-25 14:59 ` [PATCH 4/8] block: convert features and flags to __bitwise types Christoph Hellwig
2024-06-25 21:27   ` Damien Le Moal
2024-06-25 14:59 ` [PATCH 5/8] block: conding style fixup for blk_queue_max_guaranteed_bio Christoph Hellwig
2024-06-25 21:27   ` Damien Le Moal
2024-06-25 14:59 ` [PATCH 6/8] block: remove disk_update_readahead Christoph Hellwig
2024-06-25 21:29   ` Damien Le Moal
2024-06-25 14:59 ` [PATCH 7/8] block: remove the fallback case in queue_dma_alignment Christoph Hellwig
2024-06-25 15:07   ` John Garry
2024-06-25 21:29   ` Damien Le Moal
2024-06-25 14:59 ` [PATCH 8/8] block: move dma_pad_mask into queue_limits Christoph Hellwig
2024-06-25 21:31   ` Damien Le Moal
  -- strict thread matches above, loose matches on Subject: below --
2024-06-26 14:26 queue_limits fixups and tidyups v3 Christoph Hellwig
2024-06-26 14:26 ` [PATCH 1/8] md: set md-specific flags for all queue limits Christoph Hellwig

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).