Merge tag 'block-5.14-2021-08-07' of git://git.kernel.dk/linux-block
authorLinus Torvalds <torvalds@linux-foundation.org>
Sat, 7 Aug 2021 17:26:21 +0000 (10:26 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 7 Aug 2021 17:26:21 +0000 (10:26 -0700)
Pull block fixes from Jens Axboe:
 "A few minor fixes:

   - Fix ldm kernel-doc warning (Bart)

   - Fix adding offset twice for DMA address in n64cart (Christoph)

   - Fix use-after-free in dasd path handling (Stefan)

   - Order kyber insert trace correctly (Vincent)

   - raid1 errored write handling fix (Wei)

   - Fix blk-iolatency queue get failure handling (Yu)"

* tag 'block-5.14-2021-08-07' of git://git.kernel.dk/linux-block:
  kyber: make trace_block_rq call consistent with documentation
  block/partitions/ldm.c: Fix a kernel-doc warning
  blk-iolatency: error out if blk_get_queue() failed in iolatency_set_limit()
  n64cart: fix the dma address in n64cart_do_bvec
  s390/dasd: fix use after free in dasd path handling
  md/raid10: properly indicate failure when ending a failed write request

1  2 
block/partitions/ldm.c

diff --combined block/partitions/ldm.c
@@@ -1,5 -1,5 +1,5 @@@
  // SPDX-License-Identifier: GPL-2.0-or-later
- /**
+ /*
   * ldm - Support for Windows Logical Disk Manager (Dynamic Disks)
   *
   * Copyright (C) 2001,2002 Richard Russon <ldm@flatcap.org>
@@@ -510,7 -510,7 +510,7 @@@ static bool ldm_validate_partition_tabl
  
        p = (struct msdos_partition *)(data + 0x01BE);
        for (i = 0; i < 4; i++, p++)
 -              if (SYS_IND (p) == LDM_PARTITION) {
 +              if (p->sys_ind == LDM_PARTITION) {
                        result = true;
                        break;
                }