diff options
author | Cong Wang <amwang@redhat.com> | 2011-11-25 23:14:34 +0800 |
---|---|---|
committer | Cong Wang <xiyou.wangcong@gmail.com> | 2012-03-20 21:48:25 +0800 |
commit | a3ac1414eb601136ba3475e841fe76ccbab5e88d (patch) | |
tree | ee27d35f853aa892c58e9fb1846c4dac7e29b68d /fs/ntfs/super.c | |
parent | 7b9c0976ac5e549feb1d4731bc76b9acf9ac47a8 (diff) | |
download | linux-3.10-a3ac1414eb601136ba3475e841fe76ccbab5e88d.tar.gz linux-3.10-a3ac1414eb601136ba3475e841fe76ccbab5e88d.tar.bz2 linux-3.10-a3ac1414eb601136ba3475e841fe76ccbab5e88d.zip |
ntfs: remove the second argument of k[un]map_atomic()
Signed-off-by: Cong Wang <amwang@redhat.com>
Diffstat (limited to 'fs/ntfs/super.c')
-rw-r--r-- | fs/ntfs/super.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/ntfs/super.c b/fs/ntfs/super.c index f907611cca7..28d4e6ab663 100644 --- a/fs/ntfs/super.c +++ b/fs/ntfs/super.c @@ -2473,7 +2473,7 @@ static s64 get_nr_free_clusters(ntfs_volume *vol) nr_free -= PAGE_CACHE_SIZE * 8; continue; } - kaddr = kmap_atomic(page, KM_USER0); + kaddr = kmap_atomic(page); /* * Subtract the number of set bits. If this * is the last page and it is partial we don't really care as @@ -2483,7 +2483,7 @@ static s64 get_nr_free_clusters(ntfs_volume *vol) */ nr_free -= bitmap_weight(kaddr, PAGE_CACHE_SIZE * BITS_PER_BYTE); - kunmap_atomic(kaddr, KM_USER0); + kunmap_atomic(kaddr); page_cache_release(page); } ntfs_debug("Finished reading $Bitmap, last index = 0x%lx.", index - 1); @@ -2544,7 +2544,7 @@ static unsigned long __get_nr_free_mft_records(ntfs_volume *vol, nr_free -= PAGE_CACHE_SIZE * 8; continue; } - kaddr = kmap_atomic(page, KM_USER0); + kaddr = kmap_atomic(page); /* * Subtract the number of set bits. If this * is the last page and it is partial we don't really care as @@ -2554,7 +2554,7 @@ static unsigned long __get_nr_free_mft_records(ntfs_volume *vol, */ nr_free -= bitmap_weight(kaddr, PAGE_CACHE_SIZE * BITS_PER_BYTE); - kunmap_atomic(kaddr, KM_USER0); + kunmap_atomic(kaddr); page_cache_release(page); } ntfs_debug("Finished reading $MFT/$BITMAP, last index = 0x%lx.", |