* [GIT PULL] nvdimm fixes v5.19-rc5
@ 2022-07-01 23:07 Verma, Vishal L
2022-07-02 0:02 ` pr-tracker-bot
0 siblings, 1 reply; 2+ messages in thread
From: Verma, Vishal L @ 2022-07-01 23:07 UTC (permalink / raw)
To: Torvalds, Linus; +Cc: Williams, Dan J, nvdimm, linux-kernel
Hi Linus, please pull from:
git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm
tags/libnvdimm-fixes-5.19-rc5
...to receive a fix for v5.19-rc5. It has been in -next for
a week with no reported issues.
---
The following changes since commit a111daf0c53ae91e71fd2bfe7497862d14132e3e:
Linux 5.19-rc3 (2022-06-19 15:06:47 -0500)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git tags/libnvdimm-fixes-5.19-rc5
for you to fetch changes up to ef9102004a87cb3f8b26e000a095a261fc0467d3:
nvdimm: Fix badblocks clear off-by-one error (2022-06-24 11:57:19 -0700)
----------------------------------------------------------------
libnvdimm fixes for v5.19-rc5
- Fix a bug in the libnvdimm 'BTT' (Block Translation Table) driver
where accounting for poison blocks to be cleared was off by one,
causing a failure to clear the the last badblock in an nvdimm region.
----------------------------------------------------------------
Chris Ye (1):
nvdimm: Fix badblocks clear off-by-one error
drivers/nvdimm/bus.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/nvdimm/bus.c b/drivers/nvdimm/bus.c
index a4fc17db707c..b38d0355b0ac 100644
--- a/drivers/nvdimm/bus.c
+++ b/drivers/nvdimm/bus.c
@@ -176,8 +176,8 @@ static int nvdimm_clear_badblocks_region(struct device *dev, void *data)
ndr_end = nd_region->ndr_start + nd_region->ndr_size - 1;
/* make sure we are in the region */
- if (ctx->phys < nd_region->ndr_start
- || (ctx->phys + ctx->cleared) > ndr_end)
+ if (ctx->phys < nd_region->ndr_start ||
+ (ctx->phys + ctx->cleared - 1) > ndr_end)
return 0;
sector = (ctx->phys - nd_region->ndr_start) / 512;
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [GIT PULL] nvdimm fixes v5.19-rc5
2022-07-01 23:07 [GIT PULL] nvdimm fixes v5.19-rc5 Verma, Vishal L
@ 2022-07-02 0:02 ` pr-tracker-bot
0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2022-07-02 0:02 UTC (permalink / raw)
To: Verma, Vishal L; +Cc: Torvalds, Linus, Williams, Dan J, nvdimm, linux-kernel
The pull request you sent on Fri, 1 Jul 2022 23:07:26 +0000:
> git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm tags/libnvdimm-fixes-5.19-rc5
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/089866061428ec9bf67221247c936792078c41a4
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:[~2022-07-02 0:02 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-01 23:07 [GIT PULL] nvdimm fixes v5.19-rc5 Verma, Vishal L
2022-07-02 0:02 ` 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
all inboxes | Powered by JetHome®