On Fri, Apr 14, 2017 at 9:58 AM, Dan Williams <dan.j.williams@xxxxxxxxx> wrote: > The nvdimm probe flushing mechanism gives userspace a sync point where > it knows all asynchronous driver probe sequences have completed. > However, it need not wait for other asynchronous actions, like > on-demand address-range-scrub. Track the init work separately from other > work in the workqueue, and only flush the former. > > Signed-off-by: Dan Williams <dan.j.williams@xxxxxxxxx> > --- > drivers/acpi/nfit/core.c | 13 ++++++++++--- > drivers/acpi/nfit/nfit.h | 1 + > 2 files changed, 11 insertions(+), 3 deletions(-) > > diff --git a/drivers/acpi/nfit/core.c b/drivers/acpi/nfit/core.c > index 06738df477db..17cac9d369e0 100644 > --- a/drivers/acpi/nfit/core.c > +++ b/drivers/acpi/nfit/core.c > @@ -738,7 +738,7 @@ static void nfit_mem_init_bdw(struct acpi_nfit_desc *acpi_desc, > } > } > > -static int nfit_mem_dcr_init(struct acpi_nfit_desc *acpi_desc, > +static int __nfit_mem_init(struct acpi_nfit_desc *acpi_desc, > struct acpi_nfit_system_address *spa) > { > struct nfit_mem *nfit_mem, *found; > @@ -898,7 +898,7 @@ static int nfit_mem_init(struct acpi_nfit_desc *acpi_desc) > * BDWs are optional. > */ > list_for_each_entry(nfit_spa, &acpi_desc->spas, list) { > - rc = nfit_mem_dcr_init(acpi_desc, nfit_spa->spa); > + rc = __nfit_mem_init(acpi_desc, nfit_spa->spa); Whoops, this function rename should have been folded into the previous patch. -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html