Patch "iommu/vt-d: Don't set then clear private data in prq_event_thread()" has been added to the 5.10-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    iommu/vt-d: Don't set then clear private data in prq_event_thread()

to the 5.10-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     iommu-vt-d-don-t-set-then-clear-private-data-in-prq_.patch
and it can be found in the queue-5.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 0992c9a0b0fbafb17f2cafb7d8142ae5b545e1dc
Author: Lu Baolu <baolu.lu@xxxxxxxxxxxxxxx>
Date:   Sat Mar 20 10:41:56 2021 +0800

    iommu/vt-d: Don't set then clear private data in prq_event_thread()
    
    [ Upstream commit 1d421058c815d54113d9afdf6db3f995c788cf0d ]
    
    The VT-d specification (section 7.6) requires that the value in the
    Private Data field of a Page Group Response Descriptor must match
    the value in the Private Data field of the respective Page Request
    Descriptor.
    
    The private data field of a page group response descriptor is set then
    immediately cleared in prq_event_thread(). This breaks the rule defined
    by the VT-d specification. Fix it by moving clearing code up.
    
    Fixes: 5b438f4ba315d ("iommu/vt-d: Support page request in scalable mode")
    Cc: Jacob Pan <jacob.jun.pan@xxxxxxxxxxxxxxx>
    Reviewed-by: Liu Yi L <yi.l.liu@xxxxxxxxx>
    Signed-off-by: Lu Baolu <baolu.lu@xxxxxxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20210320024156.640798-1-baolu.lu@xxxxxxxxxxxxxxx
    Signed-off-by: Joerg Roedel <jroedel@xxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/iommu/intel/svm.c b/drivers/iommu/intel/svm.c
index 5c95e9693bf5..d79639b5b8a9 100644
--- a/drivers/iommu/intel/svm.c
+++ b/drivers/iommu/intel/svm.c
@@ -1071,12 +1071,12 @@ no_pasid:
 				QI_PGRP_RESP_TYPE;
 			resp.qw1 = QI_PGRP_IDX(req->prg_index) |
 				QI_PGRP_LPIG(req->lpig);
+			resp.qw2 = 0;
+			resp.qw3 = 0;
 
 			if (req->priv_data_present)
 				memcpy(&resp.qw2, req->priv_data,
 				       sizeof(req->priv_data));
-			resp.qw2 = 0;
-			resp.qw3 = 0;
 			qi_submit_sync(iommu, &resp, 1, 0);
 		}
 prq_advance:



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux