> -----Original Message----- > From: Lu Baolu [mailto:[email protected]] > Sent: Thursday, October 7, 2021 2:18 PM > To: Longpeng (Mike, Cloud Infrastructure Service Product Dept.) > <[email protected]>; [email protected]; [email protected]; > [email protected] > Cc: [email protected]; [email protected]; > [email protected]; Gonglei (Arei) <[email protected]> > Subject: Re: [PATCH v2 1/2] iommu/vt-d: convert the return type of > first_pte_in_page to bool > > On 2021/10/5 23:23, Longpeng(Mike) wrote: > > first_pte_in_page() returns boolean value, so let's convert its > > return type to bool. > > > > Signed-off-by: Longpeng(Mike) <[email protected]> > > --- > > include/linux/intel-iommu.h | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h > > index 05a65eb..a590b00 100644 > > --- a/include/linux/intel-iommu.h > > +++ b/include/linux/intel-iommu.h > > @@ -708,7 +708,7 @@ static inline bool dma_pte_superpage(struct dma_pte > > *pte) > > return (pte->val & DMA_PTE_LARGE_PAGE); > > } > > > > -static inline int first_pte_in_page(struct dma_pte *pte) > > +static inline bool first_pte_in_page(struct dma_pte *pte) > > { > > return !((unsigned long)pte & ~VTD_PAGE_MASK); > > } > > > > Probably, > > return IS_ALIGNED((unsigned long)pte, VTD_PAGE_SIZE); > > looks neater? > Looks better! I'll include this optimization in v3. > Best regards, > baolu _______________________________________________ iommu mailing list [email protected] https://lists.linuxfoundation.org/mailman/listinfo/iommu
RE: [PATCH v2 1/2] iommu/vt-d: convert the return type of first_pte_in_page to bool
Longpeng (Mike, Cloud Infrastructure Service Product Dept.) Thu, 07 Oct 2021 04:43:33 -0700
- [PATCH v2 0/2]... Longpeng(Mike)
- [PATCH v2... Longpeng(Mike)
- Re: [... Lu Baolu
- R... Longpeng (Mike, Cloud Infrastructure Service Product Dept.)
- [PATCH v2... Longpeng(Mike)
