linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] efi/unaccepted: Fix off-by-one when checking for overlapping ranges
@ 2023-11-03 14:26 Michael Roth
  2023-11-03 14:53 ` Kirill A . Shutemov
  0 siblings, 1 reply; 3+ messages in thread
From: Michael Roth @ 2023-11-03 14:26 UTC (permalink / raw)
  To: linux-efi
  Cc: x86, linux-coco, linux-mm, linux-kernel, Ard Biesheuvel,
	Kirill A . Shutemov, Vlastimil Babka, Nikolay Borisov, stable,
	Tom Lendacky, Paolo Bonzini

When a thread needs to accept memory it will scan the accepting_list
to see if any ranges already being processed by other threads overlap
with its range. Due to an off-by-one in the range comparisons, a thread
might falsely determine that an overlapping range is being accepted,
leading to an unnecessary delay before it begins processing the range.

Fix the off-by-one in the range comparison to prevent this and slightly
improve performance.

Fixes: 50e782a86c98 ("efi/unaccepted: Fix soft lockups caused by parallel memory acceptance")
Link: https://lore.kernel.org/linux-mm/20231101004523.vseyi5bezgfaht5i@amd.com/T/#me2eceb9906fcae5fe958b3fe88e41f920f8335b6
Signed-off-by: Michael Roth <michael.roth@amd.com>
---
 drivers/firmware/efi/unaccepted_memory.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/firmware/efi/unaccepted_memory.c b/drivers/firmware/efi/unaccepted_memory.c
index 135278ddaf62..79fb687bb90f 100644
--- a/drivers/firmware/efi/unaccepted_memory.c
+++ b/drivers/firmware/efi/unaccepted_memory.c
@@ -100,7 +100,7 @@ void accept_memory(phys_addr_t start, phys_addr_t end)
 	 * overlap on physical address level.
 	 */
 	list_for_each_entry(entry, &accepting_list, list) {
-		if (entry->end < range.start)
+		if (entry->end <= range.start)
 			continue;
 		if (entry->start >= range.end)
 			continue;
-- 
2.25.1



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

* Re: [PATCH] efi/unaccepted: Fix off-by-one when checking for overlapping ranges
  2023-11-03 14:26 [PATCH] efi/unaccepted: Fix off-by-one when checking for overlapping ranges Michael Roth
@ 2023-11-03 14:53 ` Kirill A . Shutemov
  2023-11-03 15:15   ` Michael Roth
  0 siblings, 1 reply; 3+ messages in thread
From: Kirill A . Shutemov @ 2023-11-03 14:53 UTC (permalink / raw)
  To: Michael Roth
  Cc: linux-efi, x86, linux-coco, linux-mm, linux-kernel,
	Ard Biesheuvel, Vlastimil Babka, Nikolay Borisov, stable,
	Tom Lendacky, Paolo Bonzini

On Fri, Nov 03, 2023 at 09:26:50AM -0500, Michael Roth wrote:
> When a thread needs to accept memory it will scan the accepting_list
> to see if any ranges already being processed by other threads overlap
> with its range. Due to an off-by-one in the range comparisons, a thread
> might falsely determine that an overlapping range is being accepted,
> leading to an unnecessary delay before it begins processing the range.

Maybe s/thread/task/g ?

> Fix the off-by-one in the range comparison to prevent this and slightly
> improve performance.
> 
> Fixes: 50e782a86c98 ("efi/unaccepted: Fix soft lockups caused by parallel memory acceptance")
> Link: https://lore.kernel.org/linux-mm/20231101004523.vseyi5bezgfaht5i@amd.com/T/#me2eceb9906fcae5fe958b3fe88e41f920f8335b6
> Signed-off-by: Michael Roth <michael.roth@amd.com>

Otherwise, looks good:

Reviewed-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
> 

-- 
  Kiryl Shutsemau / Kirill A. Shutemov


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

* Re: [PATCH] efi/unaccepted: Fix off-by-one when checking for overlapping ranges
  2023-11-03 14:53 ` Kirill A . Shutemov
@ 2023-11-03 15:15   ` Michael Roth
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Roth @ 2023-11-03 15:15 UTC (permalink / raw)
  To: Kirill A . Shutemov
  Cc: linux-efi, x86, linux-coco, linux-mm, linux-kernel,
	Ard Biesheuvel, Vlastimil Babka, Nikolay Borisov, stable,
	Tom Lendacky, Paolo Bonzini

On Fri, Nov 03, 2023 at 05:53:53PM +0300, Kirill A . Shutemov wrote:
> On Fri, Nov 03, 2023 at 09:26:50AM -0500, Michael Roth wrote:
> > When a thread needs to accept memory it will scan the accepting_list
> > to see if any ranges already being processed by other threads overlap
> > with its range. Due to an off-by-one in the range comparisons, a thread
> > might falsely determine that an overlapping range is being accepted,
> > leading to an unnecessary delay before it begins processing the range.
> 
> Maybe s/thread/task/g ?
> 
> > Fix the off-by-one in the range comparison to prevent this and slightly
> > improve performance.
> > 
> > Fixes: 50e782a86c98 ("efi/unaccepted: Fix soft lockups caused by parallel memory acceptance")
> > Link: https://lore.kernel.org/linux-mm/20231101004523.vseyi5bezgfaht5i@amd.com/T/#me2eceb9906fcae5fe958b3fe88e41f920f8335b6
> > Signed-off-by: Michael Roth <michael.roth@amd.com>
> 
> Otherwise, looks good:
> 
> Reviewed-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>

Thanks! Sending a v2 with suggested changes.

-Mike

> > 
> 
> -- 
>   Kiryl Shutsemau / Kirill A. Shutemov


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

end of thread, other threads:[~2023-11-03 15:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-03 14:26 [PATCH] efi/unaccepted: Fix off-by-one when checking for overlapping ranges Michael Roth
2023-11-03 14:53 ` Kirill A . Shutemov
2023-11-03 15:15   ` Michael Roth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox