All of lore.kernel.org
 help / color / mirror / Atom feed
* dead code question
@ 2016-03-04 21:27 Jes Sorensen
  2016-03-07 13:18 ` Guoqing Jiang
  0 siblings, 1 reply; 2+ messages in thread
From: Jes Sorensen @ 2016-03-04 21:27 UTC (permalink / raw)
  To: gqjiang; +Cc: linux-raid, NeilBrown, Goldwyn Rodrigues

Hi,

Another question regarding the cluster code. This one was introduced
with:

commit d15a1f72bd92bc4724ee94b2ae8132633ffeb72b
Author: Guoqing Jiang <gqjiang@suse.com>
Date:   Mon Oct 19 16:03:19 2015 +0800

    Safeguard against writing to an active device of another node
    
    Modifying an exiting device's superblock or creating a new superblock
    on an existing device needs to be checked because the device could be
    in use by another node in another array. So, we check this by taking
    all superblock locks in userspace so that we don't  step onto an active
    device used by another node and safeguard against accidental edits.
    After the edit is complete, we release all locks and the lockspace so
    that it can be used by the kernel space.
    
    Signed-off-by: Goldwyn Rodrigues <rgoldwyn@suse.com>
    Signed-off-by: Guoqing Jiang <gqjiang@suse.com>
    Signed-off-by: NeilBrown <neilb@suse.com>

[snip]

+/* Create the lockspace, take bitmapXXX locks on all the bitmaps. */
+int cluster_get_dlmlock(struct supertype *st, int *lockid)
+{
+       int ret = -1;
+       char str[64];
+       int flags = LKF_NOQUEUE;
+
+       dlm_lock_res = xmalloc(sizeof(struct dlm_lock_resource));
+       dlm_lock_res->ls = dlm_hooks->create_lockspace(st->cluster_name, O_RDWR);
+       if (!dlm_lock_res->ls) {
+               pr_err("%s failed to create lockspace\n", st->cluster_name);
+                goto out;
+       }
+
+       /* Conversions need the lockid in the LKSB */
+       if (flags & LKF_CONVERT)
+               dlm_lock_res->lksb.sb_lkid = *lockid;

You set flags = LKF_NOQUEUE but later check (flags & LKF_CONVERT), which
cannot be true given that:

mdadm.h:#define LKF_NOQUEUE	0x00000001
mdadm.h:#define LKF_CONVERT	0x00000004

Is this a bug, or do you have pending patches for this?

Cheers,
Jes

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: dead code question
  2016-03-04 21:27 dead code question Jes Sorensen
@ 2016-03-07 13:18 ` Guoqing Jiang
  0 siblings, 0 replies; 2+ messages in thread
From: Guoqing Jiang @ 2016-03-07 13:18 UTC (permalink / raw)
  To: Jes Sorensen; +Cc: linux-raid, NeilBrown, Goldwyn Rodrigues


On 03/05/2016 05:27 AM, Jes Sorensen wrote:
> Hi,
>
> Another question regarding the cluster code. This one was introduced
> with:
>
> commit d15a1f72bd92bc4724ee94b2ae8132633ffeb72b
> Author: Guoqing Jiang <gqjiang@suse.com>
> Date:   Mon Oct 19 16:03:19 2015 +0800
>
>      Safeguard against writing to an active device of another node
>      
>      Modifying an exiting device's superblock or creating a new superblock
>      on an existing device needs to be checked because the device could be
>      in use by another node in another array. So, we check this by taking
>      all superblock locks in userspace so that we don't  step onto an active
>      device used by another node and safeguard against accidental edits.
>      After the edit is complete, we release all locks and the lockspace so
>      that it can be used by the kernel space.
>      
>      Signed-off-by: Goldwyn Rodrigues <rgoldwyn@suse.com>
>      Signed-off-by: Guoqing Jiang <gqjiang@suse.com>
>      Signed-off-by: NeilBrown <neilb@suse.com>
>
> [snip]
>
> +/* Create the lockspace, take bitmapXXX locks on all the bitmaps. */
> +int cluster_get_dlmlock(struct supertype *st, int *lockid)
> +{
> +       int ret = -1;
> +       char str[64];
> +       int flags = LKF_NOQUEUE;
> +
> +       dlm_lock_res = xmalloc(sizeof(struct dlm_lock_resource));
> +       dlm_lock_res->ls = dlm_hooks->create_lockspace(st->cluster_name, O_RDWR);
> +       if (!dlm_lock_res->ls) {
> +               pr_err("%s failed to create lockspace\n", st->cluster_name);
> +                goto out;
> +       }
> +
> +       /* Conversions need the lockid in the LKSB */
> +       if (flags & LKF_CONVERT)
> +               dlm_lock_res->lksb.sb_lkid = *lockid;
>
> You set flags = LKF_NOQUEUE but later check (flags & LKF_CONVERT), which
> cannot be true given that:
>
> mdadm.h:#define LKF_NOQUEUE	0x00000001
> mdadm.h:#define LKF_CONVERT	0x00000004
>
> Is this a bug, or do you have pending patches for this?

Oops, I should remove the later check and will send the fix.

Thanks,
Guoqing

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-03-07 13:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-04 21:27 dead code question Jes Sorensen
2016-03-07 13:18 ` Guoqing Jiang

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.