Skip to content

Commit bbb73a1

Browse files
Petr TesarikChristoph Hellwig
authored andcommitted
swiotlb: fix a braino in the alignment check fix
The alignment mask in swiotlb_do_find_slots() masks off the high bits which are not relevant for the alignment, so multiple requirements are combined with a bitwise OR rather than AND. In plain English, the stricter the alignment, the more bits must be set in iotlb_align_mask. Confusion may arise from the fact that the same variable is also used to mask off the offset within a swiotlb slot, which is achieved with a bitwise AND. Fixes: 0eee5ae ("swiotlb: fix slot alignment checks") Reported-by: Dexuan Cui <[email protected]> Link: https://lore.kernel.org/all/CAA42JLa1y9jJ7BgQvXeUYQh-K2mDNHd2BYZ4iZUz33r5zY7oAQ@mail.gmail.com/ Reported-by: Kelsey Steele <[email protected]> Link: https://lore.kernel.org/all/20230405003549.GA21326@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net/ Signed-off-by: Petr Tesarik <[email protected]> Tested-by: Dexuan Cui <[email protected]> Signed-off-by: Christoph Hellwig <[email protected]>
1 parent 0eee5ae commit bbb73a1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

kernel/dma/swiotlb.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ static int swiotlb_do_find_slots(struct device *dev, int area_index,
623623
phys_to_dma_unencrypted(dev, mem->start) & boundary_mask;
624624
unsigned long max_slots = get_max_slots(boundary_mask);
625625
unsigned int iotlb_align_mask =
626-
dma_get_min_align_mask(dev) & ~(IO_TLB_SIZE - 1);
626+
dma_get_min_align_mask(dev) | alloc_align_mask;
627627
unsigned int nslots = nr_slots(alloc_size), stride;
628628
unsigned int offset = swiotlb_align_offset(dev, orig_addr);
629629
unsigned int index, slots_checked, count = 0, i;
@@ -639,8 +639,8 @@ static int swiotlb_do_find_slots(struct device *dev, int area_index,
639639
* allocations.
640640
*/
641641
if (alloc_size >= PAGE_SIZE)
642-
iotlb_align_mask &= PAGE_MASK;
643-
iotlb_align_mask &= alloc_align_mask;
642+
iotlb_align_mask |= ~PAGE_MASK;
643+
iotlb_align_mask &= ~(IO_TLB_SIZE - 1);
644644

645645
/*
646646
* For mappings with an alignment requirement don't bother looping to

0 commit comments

Comments
 (0)