Commit-ID: 75535238dd060a74bbcf97d15b444acaab3251d2 Gitweb: http://git.kernel.org/tip/75535238dd060a74bbcf97d15b444acaab3251d2 Author: Thomas Gleixner <tglx@xxxxxxxxxxxxx> AuthorDate: Mon, 8 Jun 2015 11:57:23 +0200 Committer: Thomas Gleixner <tglx@xxxxxxxxxxxxx> CommitDate: Mon, 8 Jun 2015 15:41:32 +0200 iommu: dmar: Provide helper to copy shared irte fields Instead of open coding, provide a helper function to copy the shared irte fields. Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: jiang.liu@xxxxxxxxxxxxxxx Cc: iommu@xxxxxxxxxxxxxxxxxxxxxxxxxx Cc: dwmw2@xxxxxxxxxxxxx Cc: Joerg Roedel <joro@xxxxxxxxxx> Cc: Feng Wu <feng.wu@xxxxxxxxx> --- include/linux/dmar.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/include/linux/dmar.h b/include/linux/dmar.h index 0dbcabc..e9bc929 100644 --- a/include/linux/dmar.h +++ b/include/linux/dmar.h @@ -249,6 +249,18 @@ struct irte { }; }; +static inline void dmar_copy_shared_irte(struct irte *dst, struct irte *src) +{ + dst->present = src->present; + dst->fpd = src->fpd; + dst->avail = src->avail; + dst->pst = src->pst; + dst->vector = src->vector; + dst->sid = src->sid; + dst->sq = src->sq; + dst->svt = src->svt; +} + #define PDA_LOW_BIT 26 #define PDA_HIGH_BIT 32 -- To unsubscribe from this list: send the line "unsubscribe linux-tip-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html
![]() |