diff options
author | Cong Wang <amwang@redhat.com> | 2011-11-25 10:14:40 -0500 |
---|---|---|
committer | Cong Wang <xiyou.wangcong@gmail.com> | 2012-03-20 09:48:28 -0400 |
commit | 6114eab535ab49239e0a6ce08eb9243664aef993 (patch) | |
tree | cb699cfc9f29eb80105f6513fc4679b5ade5df46 /net/rds/info.c | |
parent | 0352bc550cfa536e4fa2c0e906359bcd5687afff (diff) |
rds: remove the second argument of k[un]map_atomic()
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Cong Wang <amwang@redhat.com>
Diffstat (limited to 'net/rds/info.c')
-rw-r--r-- | net/rds/info.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/rds/info.c b/net/rds/info.c index f1c016c4146e..9a6b4f66187c 100644 --- a/net/rds/info.c +++ b/net/rds/info.c | |||
@@ -104,7 +104,7 @@ EXPORT_SYMBOL_GPL(rds_info_deregister_func); | |||
104 | void rds_info_iter_unmap(struct rds_info_iterator *iter) | 104 | void rds_info_iter_unmap(struct rds_info_iterator *iter) |
105 | { | 105 | { |
106 | if (iter->addr) { | 106 | if (iter->addr) { |
107 | kunmap_atomic(iter->addr, KM_USER0); | 107 | kunmap_atomic(iter->addr); |
108 | iter->addr = NULL; | 108 | iter->addr = NULL; |
109 | } | 109 | } |
110 | } | 110 | } |
@@ -119,7 +119,7 @@ void rds_info_copy(struct rds_info_iterator *iter, void *data, | |||
119 | 119 | ||
120 | while (bytes) { | 120 | while (bytes) { |
121 | if (!iter->addr) | 121 | if (!iter->addr) |
122 | iter->addr = kmap_atomic(*iter->pages, KM_USER0); | 122 | iter->addr = kmap_atomic(*iter->pages); |
123 | 123 | ||
124 | this = min(bytes, PAGE_SIZE - iter->offset); | 124 | this = min(bytes, PAGE_SIZE - iter->offset); |
125 | 125 | ||
@@ -134,7 +134,7 @@ void rds_info_copy(struct rds_info_iterator *iter, void *data, | |||
134 | iter->offset += this; | 134 | iter->offset += this; |
135 | 135 | ||
136 | if (iter->offset == PAGE_SIZE) { | 136 | if (iter->offset == PAGE_SIZE) { |
137 | kunmap_atomic(iter->addr, KM_USER0); | 137 | kunmap_atomic(iter->addr); |
138 | iter->addr = NULL; | 138 | iter->addr = NULL; |
139 | iter->offset = 0; | 139 | iter->offset = 0; |
140 | iter->pages++; | 140 | iter->pages++; |