All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mike Snitzer <snitzer@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: dm-devel@redhat.com, linux-block@vger.kernel.org,
	Alasdair G Kergon <agk@redhat.com>,
	Genjian Zhang <zhanggenjian@kylinos.cn>,
	Jiangshan Yi <yijiangshan@kylinos.cn>,
	Jilin Yuan <yuanjilin@cdjrlc.com>,
	Mikulas Patocka <mpatocka@redhat.com>,
	Milan Broz <gmazyland@gmail.com>,
	Nathan Huckleberry <nhuck@google.com>,
	Nikos Tsironis <ntsironis@arrikto.com>,
	Shaomin Deng <dengshaomin@cdjrlc.com>
Subject: [git pull] device mapper changes for 6.1
Date: Tue, 18 Oct 2022 12:20:50 -0400	[thread overview]
Message-ID: <Y07SYs98z5VNxdZq@redhat.com> (raw)

Hi Linus,

I missed sending the DM changes during the 6.1 merge window. Slipped my
mind largely due to there not being anything super urgent or more
elaborate this cycle.

But there is one additional stable@ fix from Mikulas that I'll send
separately since it requires the recently introduced test_bit_acquire().

The following changes since commit 1c23f9e627a7b412978b4e852793c5e3c3efc555:

  Linux 6.0-rc2 (2022-08-21 17:32:54 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git tags/for-6.1/dm-changes

for you to fetch changes up to a871fb26aba8911ea313dc7bd28f3e788a80fdb4:

  dm clone: Fix typo in block_device format specifier (2022-10-04 19:00:22 -0400)

Please pull, thanks.
Mike

----------------------------------------------------------------
- DM core replace DMWARN with DMERR or DMCRIT for fatal errors.

- Enhance DM ioctl interface to allow returning an error string to
  userspace. Depends on exporting is_vmalloc_or_module_addr() to allow
  DM core to conditionally free memory allocated with kasprintf().

- Enable WQ_HIGHPRI on DM verity target's verify_wq.

- Add documentation for DM verity's try_verify_in_tasklet option.

- Various typo and redundant word fixes in code and/or comments.

----------------------------------------------------------------
Genjian Zhang (1):
      dm: remove unnecessary assignment statement in alloc_dev()

Jiangshan Yi (1):
      dm raid: fix typo in analyse_superblocks code comment

Jilin Yuan (1):
      dm raid: delete the redundant word 'that' in comment

Mikulas Patocka (4):
      dm: change from DMWARN to DMERR or DMCRIT for fatal errors
      dm ioctl: add an option to return an error string to userspace
      mm: export is_vmalloc_or_module_addr
      dm: support allocating error strings to enhance errors returned to userspace

Milan Broz (1):
      dm verity: Add documentation for try_verify_in_tasklet option

Nathan Huckleberry (1):
      dm verity: enable WQ_HIGHPRI on verify_wq

Nikos Tsironis (1):
      dm clone: Fix typo in block_device format specifier

Shaomin Deng (1):
      dm cache: delete the redundant word 'each' in comment

 Documentation/admin-guide/device-mapper/verity.rst |   4 +
 drivers/md/dm-cache-policy.h                       |   2 +-
 drivers/md/dm-clone-target.c                       |   2 +-
 drivers/md/dm-ioctl.c                              | 125 +++++++++++-------
 drivers/md/dm-raid.c                               |   4 +-
 drivers/md/dm-rq.c                                 |   4 +-
 drivers/md/dm-stats.c                              |   2 +-
 drivers/md/dm-table.c                              | 139 +++++++++++----------
 drivers/md/dm-verity-target.c                      |  18 +--
 drivers/md/dm.c                                    |   9 +-
 include/linux/device-mapper.h                      |  18 ++-
 include/uapi/linux/dm-ioctl.h                      |  14 ++-
 mm/vmalloc.c                                       |   1 +
 13 files changed, 205 insertions(+), 137 deletions(-)

WARNING: multiple messages have this Message-ID (diff)
From: Mike Snitzer <snitzer@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Jilin Yuan <yuanjilin@cdjrlc.com>,
	Nikos Tsironis <ntsironis@arrikto.com>,
	Shaomin Deng <dengshaomin@cdjrlc.com>,
	Nathan Huckleberry <nhuck@google.com>,
	linux-block@vger.kernel.org, dm-devel@redhat.com,
	Mikulas Patocka <mpatocka@redhat.com>,
	Genjian Zhang <zhanggenjian@kylinos.cn>,
	Milan Broz <gmazyland@gmail.com>,
	Alasdair G Kergon <agk@redhat.com>,
	Jiangshan Yi <yijiangshan@kylinos.cn>
Subject: [dm-devel] [git pull] device mapper changes for 6.1
Date: Tue, 18 Oct 2022 12:20:50 -0400	[thread overview]
Message-ID: <Y07SYs98z5VNxdZq@redhat.com> (raw)

Hi Linus,

I missed sending the DM changes during the 6.1 merge window. Slipped my
mind largely due to there not being anything super urgent or more
elaborate this cycle.

But there is one additional stable@ fix from Mikulas that I'll send
separately since it requires the recently introduced test_bit_acquire().

The following changes since commit 1c23f9e627a7b412978b4e852793c5e3c3efc555:

  Linux 6.0-rc2 (2022-08-21 17:32:54 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git tags/for-6.1/dm-changes

for you to fetch changes up to a871fb26aba8911ea313dc7bd28f3e788a80fdb4:

  dm clone: Fix typo in block_device format specifier (2022-10-04 19:00:22 -0400)

Please pull, thanks.
Mike

----------------------------------------------------------------
- DM core replace DMWARN with DMERR or DMCRIT for fatal errors.

- Enhance DM ioctl interface to allow returning an error string to
  userspace. Depends on exporting is_vmalloc_or_module_addr() to allow
  DM core to conditionally free memory allocated with kasprintf().

- Enable WQ_HIGHPRI on DM verity target's verify_wq.

- Add documentation for DM verity's try_verify_in_tasklet option.

- Various typo and redundant word fixes in code and/or comments.

----------------------------------------------------------------
Genjian Zhang (1):
      dm: remove unnecessary assignment statement in alloc_dev()

Jiangshan Yi (1):
      dm raid: fix typo in analyse_superblocks code comment

Jilin Yuan (1):
      dm raid: delete the redundant word 'that' in comment

Mikulas Patocka (4):
      dm: change from DMWARN to DMERR or DMCRIT for fatal errors
      dm ioctl: add an option to return an error string to userspace
      mm: export is_vmalloc_or_module_addr
      dm: support allocating error strings to enhance errors returned to userspace

Milan Broz (1):
      dm verity: Add documentation for try_verify_in_tasklet option

Nathan Huckleberry (1):
      dm verity: enable WQ_HIGHPRI on verify_wq

Nikos Tsironis (1):
      dm clone: Fix typo in block_device format specifier

Shaomin Deng (1):
      dm cache: delete the redundant word 'each' in comment

 Documentation/admin-guide/device-mapper/verity.rst |   4 +
 drivers/md/dm-cache-policy.h                       |   2 +-
 drivers/md/dm-clone-target.c                       |   2 +-
 drivers/md/dm-ioctl.c                              | 125 +++++++++++-------
 drivers/md/dm-raid.c                               |   4 +-
 drivers/md/dm-rq.c                                 |   4 +-
 drivers/md/dm-stats.c                              |   2 +-
 drivers/md/dm-table.c                              | 139 +++++++++++----------
 drivers/md/dm-verity-target.c                      |  18 +--
 drivers/md/dm.c                                    |   9 +-
 include/linux/device-mapper.h                      |  18 ++-
 include/uapi/linux/dm-ioctl.h                      |  14 ++-
 mm/vmalloc.c                                       |   1 +
 13 files changed, 205 insertions(+), 137 deletions(-)

--
dm-devel mailing list
dm-devel@redhat.com
https://listman.redhat.com/mailman/listinfo/dm-devel


             reply	other threads:[~2022-10-18 16:20 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-18 16:20 Mike Snitzer [this message]
2022-10-18 16:20 ` [dm-devel] [git pull] device mapper changes for 6.1 Mike Snitzer
2022-10-18 18:17 ` Christoph Hellwig
2022-10-18 18:17   ` [dm-devel] " Christoph Hellwig
2022-10-18 18:48   ` Mike Snitzer
2022-10-18 18:48     ` [dm-devel] " Mike Snitzer
2022-10-20  8:16     ` Christoph Hellwig
2022-10-20  8:16       ` Christoph Hellwig
2022-10-20 11:44       ` Mikulas Patocka
2022-10-20 11:44         ` Mikulas Patocka
2022-10-18 18:54   ` Linus Torvalds
2022-10-18 18:54     ` [dm-devel] " Linus Torvalds
2022-10-18 19:19     ` Linus Torvalds
2022-10-18 19:19       ` [dm-devel] " Linus Torvalds
2022-10-18 21:13       ` Mike Snitzer
2022-10-18 21:13         ` [dm-devel] " Mike Snitzer
2022-10-18 22:11         ` Milan Broz
2022-10-18 22:11           ` [dm-devel] " Milan Broz
2022-10-18 22:18           ` Linus Torvalds
2022-10-18 22:18             ` [dm-devel] " Linus Torvalds
2022-10-18 20:28     ` Mikulas Patocka
2022-10-18 20:28       ` [dm-devel] " Mikulas Patocka
2022-10-18 22:17       ` Linus Torvalds
2022-10-18 22:17         ` [dm-devel] " Linus Torvalds
2022-10-19  6:18     ` Jason A. Donenfeld
2022-10-19  6:18       ` [dm-devel] " Jason A. Donenfeld
2022-10-20  8:17     ` Christoph Hellwig
2022-10-20  8:17       ` Christoph Hellwig

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Y07SYs98z5VNxdZq@redhat.com \
    --to=snitzer@kernel.org \
    --cc=agk@redhat.com \
    --cc=dengshaomin@cdjrlc.com \
    --cc=dm-devel@redhat.com \
    --cc=gmazyland@gmail.com \
    --cc=linux-block@vger.kernel.org \
    --cc=mpatocka@redhat.com \
    --cc=nhuck@google.com \
    --cc=ntsironis@arrikto.com \
    --cc=torvalds@linux-foundation.org \
    --cc=yijiangshan@kylinos.cn \
    --cc=yuanjilin@cdjrlc.com \
    --cc=zhanggenjian@kylinos.cn \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.