]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
md-cluster: remove unnecessary setting for slot
authorGuoqing Jiang <gqjiang@suse.com>
Mon, 12 Oct 2015 09:21:22 +0000 (17:21 +0800)
committerGoldwyn Rodrigues <rgoldwyn@suse.com>
Mon, 12 Oct 2015 16:58:14 +0000 (11:58 -0500)
Since slot will be set within _sendmsg, we can remove
the redundant code in resync_info_update.

Signed-off-by: Guoqing Jiang <gqjiang@suse.com>
drivers/md/md-cluster.c

index 3c18185160709485c706863df848c2c058b4966e..ba80df923605e43bc464b1b4f8dc5ae1523c15ae 100644 (file)
@@ -880,13 +880,11 @@ static int resync_info_update(struct mddev *mddev, sector_t lo, sector_t hi)
 {
        struct md_cluster_info *cinfo = mddev->cluster_info;
        struct cluster_msg cmsg;
-       int slot = cinfo->slot_number - 1;
 
        add_resync_info(mddev, cinfo->bitmap_lockres, lo, hi);
        /* Re-acquire the lock to refresh LVB */
        dlm_lock_sync(cinfo->bitmap_lockres, DLM_LOCK_PW);
        cmsg.type = cpu_to_le32(RESYNCING);
-       cmsg.slot = cpu_to_le32(slot);
        cmsg.low = cpu_to_le64(lo);
        cmsg.high = cpu_to_le64(hi);