From: "Chanho Park" <chanho61.park@samsung.com>
To: "'Christoph Hellwig'" <hch@lst.de>
Cc: 'Konrad Rzeszutek Wilk' <konrad.wilk@oracle.com>,
linux-kernel@vger.kernel.org,
'Bumyong Lee' <bumyong.lee@samsung.com>,
iommu@lists.linux-foundation.org,
'Robin Murphy' <robin.murphy@arm.com>
Subject: RE: [PATCH] swiotlb: manipulate orig_addr when tlb_addr has offset
Date: Mon, 10 May 2021 18:04:17 +0900 [thread overview]
Message-ID: <002401d7457b$75171560$5f454020$@samsung.com> (raw)
In-Reply-To: <20210510084406.GA1093@lst.de>
(RESEND due to wrong encrypted message setting)
Hi,
> On Mon, May 10, 2021 at 05:30:57PM +0900, Chanho Park wrote:
> > +static unsigned int swiotlb_align_offset(struct device *dev, u64
> > +addr);
>
> Please just move swiotlb_align_offset up to avoid the forward declaration.
Okay. I'll move the position of the function next patch.
>
> > /*
> > * Bounce: copy the swiotlb buffer from or back to the original dma
> location
> > */
> > @@ -346,10 +347,17 @@ static void swiotlb_bounce(struct device *dev,
> phys_addr_t tlb_addr, size_t size
> > size_t alloc_size = mem->slots[index].alloc_size;
> > unsigned long pfn = PFN_DOWN(orig_addr);
> > unsigned char *vaddr = phys_to_virt(tlb_addr);
> > + unsigned int tlb_offset;
> >
> > if (orig_addr == INVALID_PHYS_ADDR)
> > return;
> >
> > + tlb_offset = (unsigned int)tlb_addr & (IO_TLB_SIZE - 1);
> > + tlb_offset -= swiotlb_align_offset(dev, orig_addr);
>
> Nit: I'd write this as:
>
> tlb_offset = (tlb_addr & (IO_TLB_SIZE - 1)) -
> swiotlb_align_offset(dev, orig_addr);
>
> as there is no need for the cast, and just having a single assignment is
> easier to follow.
Great. It can be a single assignment as you suggested.
Best Regards,
Chanho Park
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu
next prev parent reply other threads:[~2021-05-10 9:41 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20210510083139epcas2p211d9bee16e5e8f8ea34e606c83ac3a55@epcas2p2.samsung.com>
2021-05-10 8:30 ` [PATCH] swiotlb: manipulate orig_addr when tlb_addr has offset Chanho Park
2021-05-10 8:44 ` Christoph Hellwig
2021-05-10 9:04 ` Chanho Park [this message]
[not found] <CGME20210510085719epcas2p3b4467098ba64c4bdd51fe3ede38e3753@epcms2p4>
2021-05-10 8:57 ` CHANHO PARK
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='002401d7457b$75171560$5f454020$@samsung.com' \
--to=chanho61.park@samsung.com \
--cc=bumyong.lee@samsung.com \
--cc=hch@lst.de \
--cc=iommu@lists.linux-foundation.org \
--cc=konrad.wilk@oracle.com \
--cc=linux-kernel@vger.kernel.org \
--cc=robin.murphy@arm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox