On 1/28/21 10:33 PM, Kai Krakow wrote: > Should be `register_device_async`. > > Cc: Coly Li <colyli@xxxxxxx> > Signed-off-by: Kai Krakow <kai@xxxxxxxxxxx> Thanks for the catch :-) I add it into my 5.12 for-next. Coly Li > --- > drivers/md/bcache/super.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/md/bcache/super.c b/drivers/md/bcache/super.c > index 2047a9cccdb5d..e7d1b52c5cc8b 100644 > --- a/drivers/md/bcache/super.c > +++ b/drivers/md/bcache/super.c > @@ -2517,7 +2517,7 @@ static void register_cache_worker(struct work_struct *work) > module_put(THIS_MODULE); > } > > -static void register_device_aync(struct async_reg_args *args) > +static void register_device_async(struct async_reg_args *args) > { > if (SB_IS_BDEV(args->sb)) > INIT_DELAYED_WORK(&args->reg_work, register_bdev_worker); > @@ -2611,7 +2611,7 @@ static ssize_t register_bcache(struct kobject *k, struct kobj_attribute *attr, > args->sb = sb; > args->sb_disk = sb_disk; > args->bdev = bdev; > - register_device_aync(args); > + register_device_async(args); > /* No wait and returns to user space */ > goto async_done; > } >