Skip to content

Commit 93ebb68

Browse files
halil-pasickonradwilk
authored andcommitted
s390/pv: fix the forcing of the swiotlb
Since commit 903cd0f ("swiotlb: Use is_swiotlb_force_bounce for swiotlb data bouncing") if code sets swiotlb_force it needs to do so before the swiotlb is initialised. Otherwise io_tlb_default_mem->force_bounce will not get set to true, and devices that use (the default) swiotlb will not bounce despite switolb_force having the value of SWIOTLB_FORCE. Let us restore swiotlb functionality for PV by fulfilling this new requirement. This change addresses what turned out to be a fragility in commit 64e1f0c ("s390/mm: force swiotlb for protected virtualization"), which ain't exactly broken in its original context, but could give us some more headache if people backport the broken change and forget this fix. Signed-off-by: Halil Pasic <[email protected]> Tested-by: Christian Borntraeger <[email protected]> Reviewed-by: Christian Borntraeger <[email protected]> Fixes: 903cd0f ("swiotlb: Use is_swiotlb_force_bounce for swiotlb data bouncing") Fixes: 64e1f0c ("s390/mm: force swiotlb for protected virtualization") Cc: [email protected] #5.3+ Signed-off-by: Konrad Rzeszutek Wilk <[email protected]>
1 parent ad6c002 commit 93ebb68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/s390/mm/init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,9 @@ static void pv_init(void)
186186
return;
187187

188188
/* make sure bounce buffers are shared */
189+
swiotlb_force = SWIOTLB_FORCE;
189190
swiotlb_init(1);
190191
swiotlb_update_mem_attributes();
191-
swiotlb_force = SWIOTLB_FORCE;
192192
}
193193

194194
void __init mem_init(void)

0 commit comments

Comments
 (0)