Merge branch 'for-5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu
[platform/kernel/linux-rpi.git] / drivers / md / md.c
index a114b05..24638cc 100644 (file)
@@ -5316,7 +5316,8 @@ int mddev_init_writes_pending(struct mddev *mddev)
 {
        if (mddev->writes_pending.percpu_count_ptr)
                return 0;
-       if (percpu_ref_init(&mddev->writes_pending, no_op, 0, GFP_KERNEL) < 0)
+       if (percpu_ref_init(&mddev->writes_pending, no_op,
+                           PERCPU_REF_ALLOW_REINIT, GFP_KERNEL) < 0)
                return -ENOMEM;
        /* We want to start with the refcount at zero */
        percpu_ref_put(&mddev->writes_pending);