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 v2] device mapper changes for 6.1
Date: Tue, 18 Oct 2022 17:37:22 -0400 [thread overview]
Message-ID: <Y08ckqIVOmGVVX5e@redhat.com> (raw)
Hi Linus,
I dropped the DM ioctl changes to allow returning an error string to
userspace. I rebased the unrelated earlier DM changes (from tag
for-6.1/dm-changes) ontop of the 'for-6.1/dm-fix' tag... and arrived
this single new tag (for-6.1/dm-changes-v2) for you to pull.
The following changes since commit bb1a1146467ad812bb65440696df0782e2bc63c8:
Merge tag 'cgroup-for-6.1-rc1-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup (2022-10-17 18:52:43 -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-v2
for you to fetch changes up to 5434ee8d28575b2e784bd5b4dbfc912e5da90759:
dm clone: Fix typo in block_device format specifier (2022-10-18 17:17:48 -0400)
Please pull, thanks.
Mike
----------------------------------------------------------------
- Fix dm-bufio to use test_bit_acquire to properly test_bit on arches
with weaker memory ordering.
- DM core replace DMWARN with DMERR or DMCRIT for fatal errors.
- 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 (2):
dm bufio: use the acquire memory barrier when testing for B_READING
dm: change from DMWARN to DMERR or DMCRIT for fatal errors
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-bufio.c | 13 ++--
drivers/md/dm-cache-policy.h | 2 +-
drivers/md/dm-clone-target.c | 2 +-
drivers/md/dm-ioctl.c | 78 +++++++++++-----------
drivers/md/dm-raid.c | 4 +-
drivers/md/dm-rq.c | 4 +-
drivers/md/dm-stats.c | 2 +-
drivers/md/dm-table.c | 78 +++++++++++-----------
drivers/md/dm-verity-target.c | 18 ++---
drivers/md/dm.c | 9 ++-
11 files changed, 110 insertions(+), 104 deletions(-)
--
dm-devel mailing list
dm-devel@redhat.com
https://listman.redhat.com/mailman/listinfo/dm-devel
WARNING: multiple messages have this Message-ID (diff)
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 v2] device mapper changes for 6.1
Date: Tue, 18 Oct 2022 17:37:22 -0400 [thread overview]
Message-ID: <Y08ckqIVOmGVVX5e@redhat.com> (raw)
Hi Linus,
I dropped the DM ioctl changes to allow returning an error string to
userspace. I rebased the unrelated earlier DM changes (from tag
for-6.1/dm-changes) ontop of the 'for-6.1/dm-fix' tag... and arrived
this single new tag (for-6.1/dm-changes-v2) for you to pull.
The following changes since commit bb1a1146467ad812bb65440696df0782e2bc63c8:
Merge tag 'cgroup-for-6.1-rc1-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup (2022-10-17 18:52:43 -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-v2
for you to fetch changes up to 5434ee8d28575b2e784bd5b4dbfc912e5da90759:
dm clone: Fix typo in block_device format specifier (2022-10-18 17:17:48 -0400)
Please pull, thanks.
Mike
----------------------------------------------------------------
- Fix dm-bufio to use test_bit_acquire to properly test_bit on arches
with weaker memory ordering.
- DM core replace DMWARN with DMERR or DMCRIT for fatal errors.
- 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 (2):
dm bufio: use the acquire memory barrier when testing for B_READING
dm: change from DMWARN to DMERR or DMCRIT for fatal errors
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-bufio.c | 13 ++--
drivers/md/dm-cache-policy.h | 2 +-
drivers/md/dm-clone-target.c | 2 +-
drivers/md/dm-ioctl.c | 78 +++++++++++-----------
drivers/md/dm-raid.c | 4 +-
drivers/md/dm-rq.c | 4 +-
drivers/md/dm-stats.c | 2 +-
drivers/md/dm-table.c | 78 +++++++++++-----------
drivers/md/dm-verity-target.c | 18 ++---
drivers/md/dm.c | 9 ++-
11 files changed, 110 insertions(+), 104 deletions(-)
next reply other threads:[~2022-10-18 21:37 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-18 21:37 Mike Snitzer [this message]
2022-10-18 21:37 ` [git pull v2] device mapper changes for 6.1 Mike Snitzer
2022-10-21 0:41 ` [dm-devel] " pr-tracker-bot
2022-10-21 0:41 ` pr-tracker-bot
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=Y08ckqIVOmGVVX5e@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.