lkml.org 
[lkml]   [2011]   [Nov]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 57/62] md: remove the second argument of k[un]map_atomic()
    Date

    Signed-off-by: Cong Wang <amwang@redhat.com>
    ---
    drivers/md/bitmap.c | 6 +++---
    1 files changed, 3 insertions(+), 3 deletions(-)

    diff --git a/drivers/md/bitmap.c b/drivers/md/bitmap.c
    index 8659515..4062823 100644
    --- a/drivers/md/bitmap.c
    +++ b/drivers/md/bitmap.c
    @@ -525,7 +525,7 @@ static int bitmap_new_disk_sb(struct bitmap *bitmap)
    }
    bitmap->sb_page->index = 0;

    - sb = kmap_atomic(bitmap->sb_page, KM_USER0);
    + sb = kmap_atomic(bitmap->sb_page);

    sb->magic = cpu_to_le32(BITMAP_MAGIC);
    sb->version = cpu_to_le32(BITMAP_MAJOR_HI);
    @@ -533,7 +533,7 @@ static int bitmap_new_disk_sb(struct bitmap *bitmap)
    chunksize = bitmap->mddev->bitmap_info.chunksize;
    BUG_ON(!chunksize);
    if (!is_power_of_2(chunksize)) {
    - kunmap_atomic(sb, KM_USER0);
    + kunmap_atomic(sb);
    printk(KERN_ERR "bitmap chunksize not a power of 2\n");
    return -EINVAL;
    }
    @@ -571,7 +571,7 @@ static int bitmap_new_disk_sb(struct bitmap *bitmap)
    bitmap->flags |= BITMAP_HOSTENDIAN;
    sb->version = cpu_to_le32(BITMAP_MAJOR_HOSTENDIAN);

    - kunmap_atomic(sb, KM_USER0);
    + kunmap_atomic(sb);

    return 0;
    }
    --
    1.7.4.4


    \
     
     \ /
      Last update: 2011-11-27 06:41    [W:2.119 / U:0.376 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site