Message ID | 20200820021641.3188-7-thunder.leizhen@huawei.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | bugfix and optimize for drivers/nvdimm | expand |
> Move EXPORT_SYMBOL_GPL(nvdimm_flush) close to nvdimm_flush(), currently > it's near to generic_nvdimm_flush(). > > Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com> > --- > drivers/nvdimm/region_devs.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/nvdimm/region_devs.c b/drivers/nvdimm/region_devs.c > index 49be115c9189eff..909bf03edb132cf 100644 > --- a/drivers/nvdimm/region_devs.c > +++ b/drivers/nvdimm/region_devs.c > @@ -1183,6 +1183,8 @@ int nvdimm_flush(struct nd_region *nd_region, struct bio *bio) > > return rc; > } > +EXPORT_SYMBOL_GPL(nvdimm_flush); > + > /** > * nvdimm_flush - flush any posted write queues between the cpu and pmem media > * @nd_region: blk or interleaved pmem region > @@ -1214,7 +1216,6 @@ int generic_nvdimm_flush(struct nd_region *nd_region) > > return 0; > } > -EXPORT_SYMBOL_GPL(nvdimm_flush); > > /** > * nvdimm_has_flush - determine write flushing requirements > -- Reviewed-by: Pankaj Gupta <pankaj.gupta.linux@gmail.com> > 1.8.3 > > _______________________________________________ > Linux-nvdimm mailing list -- linux-nvdimm@lists.01.org > To unsubscribe send an email to linux-nvdimm-leave@lists.01.org
diff --git a/drivers/nvdimm/region_devs.c b/drivers/nvdimm/region_devs.c index 49be115c9189eff..909bf03edb132cf 100644 --- a/drivers/nvdimm/region_devs.c +++ b/drivers/nvdimm/region_devs.c @@ -1183,6 +1183,8 @@ int nvdimm_flush(struct nd_region *nd_region, struct bio *bio) return rc; } +EXPORT_SYMBOL_GPL(nvdimm_flush); + /** * nvdimm_flush - flush any posted write queues between the cpu and pmem media * @nd_region: blk or interleaved pmem region @@ -1214,7 +1216,6 @@ int generic_nvdimm_flush(struct nd_region *nd_region) return 0; } -EXPORT_SYMBOL_GPL(nvdimm_flush); /** * nvdimm_has_flush - determine write flushing requirements
Move EXPORT_SYMBOL_GPL(nvdimm_flush) close to nvdimm_flush(), currently it's near to generic_nvdimm_flush(). Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com> --- drivers/nvdimm/region_devs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)