From: Jason Gunthorpe <jgg@nvidia.com>
To: Christoph Hellwig <hch@infradead.org>
Cc: linuxppc-dev@lists.ozlabs.org,
Christophe Lombard <clombard@linux.vnet.ibm.com>,
fbarrat@linux.vnet.ibm.com, ajd@linux.ibm.com
Subject: Re: [PATCH V2 4/5] ocxl: Add mmu notifier
Date: Tue, 24 Nov 2020 09:45:25 -0400 [thread overview]
Message-ID: <20201124134525.GB4800@nvidia.com> (raw)
In-Reply-To: <20201124091738.GA26078@infradead.org>
On Tue, Nov 24, 2020 at 09:17:38AM +0000, Christoph Hellwig wrote:
> > @@ -470,6 +487,26 @@ void ocxl_link_release(struct pci_dev *dev, void *link_handle)
> > }
> > EXPORT_SYMBOL_GPL(ocxl_link_release);
> >
> > +static void invalidate_range(struct mmu_notifier *mn,
> > + struct mm_struct *mm,
> > + unsigned long start, unsigned long end)
> > +{
> > + struct pe_data *pe_data = container_of(mn, struct pe_data, mmu_notifier);
> > + struct ocxl_link *link = pe_data->link;
> > + unsigned long addr, pid, page_size = PAGE_SIZE;
The page_size variable seems unnecessary
> > +
> > + pid = mm->context.id;
> > +
> > + spin_lock(&link->atsd_lock);
> > + for (addr = start; addr < end; addr += page_size)
> > + pnv_ocxl_tlb_invalidate(&link->arva, pid, addr);
> > + spin_unlock(&link->atsd_lock);
> > +}
> > +
> > +static const struct mmu_notifier_ops ocxl_mmu_notifier_ops = {
> > + .invalidate_range = invalidate_range,
> > +};
> > +
> > static u64 calculate_cfg_state(bool kernel)
> > {
> > u64 state;
> > @@ -526,6 +563,8 @@ int ocxl_link_add_pe(void *link_handle, int pasid, u32 pidr, u32 tidr,
> > pe_data->mm = mm;
> > pe_data->xsl_err_cb = xsl_err_cb;
> > pe_data->xsl_err_data = xsl_err_data;
> > + pe_data->link = link;
> > + pe_data->mmu_notifier.ops = &ocxl_mmu_notifier_ops;
> >
> > memset(pe, 0, sizeof(struct ocxl_process_element));
> > pe->config_state = cpu_to_be64(calculate_cfg_state(pidr == 0));
> > @@ -542,8 +581,16 @@ int ocxl_link_add_pe(void *link_handle, int pasid, u32 pidr, u32 tidr,
> > * by the nest MMU. If we have a kernel context, TLBIs are
> > * already global.
> > */
> > - if (mm)
> > + if (mm) {
> > mm_context_add_copro(mm);
> > + if (link->arva) {
> > + /* Use MMIO registers for the TLB Invalidate
> > + * operations.
> > + */
> > + mmu_notifier_register(&pe_data->mmu_notifier, mm);
Every other place doing stuff like this is de-duplicating the
notifier. If you have multiple clients this will do multiple redundant
invalidations?
The notifier get/put API is designed to solve that problem, you'd get
a single notifier for the mm and then add the impacted arva's to some
list at the notifier.
Jason
next prev parent reply other threads:[~2020-11-24 13:53 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-20 17:32 [PATCH V2 0/5] ocxl: Mmio invalidation support Christophe Lombard
2020-11-20 17:32 ` [PATCH V2 1/5] ocxl: Assign a register set to a Logical Partition Christophe Lombard
2020-11-23 10:35 ` Frederic Barrat
2020-11-20 17:32 ` [PATCH V2 2/5] ocxl: Initiate a TLB invalidate command Christophe Lombard
2020-11-23 10:37 ` Frederic Barrat
2020-11-20 17:32 ` [PATCH V2 3/5] ocxl: Update the Process Element Entry Christophe Lombard
2020-11-23 10:38 ` Frederic Barrat
2020-11-20 17:32 ` [PATCH V2 4/5] ocxl: Add mmu notifier Christophe Lombard
2020-11-23 10:40 ` Frederic Barrat
2020-11-24 9:17 ` Christoph Hellwig
2020-11-24 13:45 ` Jason Gunthorpe [this message]
2020-11-24 16:48 ` Christophe Lombard
2020-11-20 17:32 ` [PATCH V2 5/5] ocxl: Add new kernel traces Christophe Lombard
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=20201124134525.GB4800@nvidia.com \
--to=jgg@nvidia.com \
--cc=ajd@linux.ibm.com \
--cc=clombard@linux.vnet.ibm.com \
--cc=fbarrat@linux.vnet.ibm.com \
--cc=hch@infradead.org \
--cc=linuxppc-dev@lists.ozlabs.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.