diff options
author | Andy Grover <andy.grover@oracle.com> | 2010-01-12 13:52:28 -0500 |
---|---|---|
committer | Andy Grover <andy.grover@oracle.com> | 2010-09-08 21:11:43 -0400 |
commit | d22faec22c2ab2364fd8fc3c8159b0b5b28b0fd1 (patch) | |
tree | 90a286b17b500447e413d8d6a1f119f696a06e3c /net/rds | |
parent | 40589e74f7ba855f3a887c9d4abe9d100c5b039c (diff) |
RDS: Do not mask address when pinning pages
This does not appear to be necessary.
Signed-off-by: Andy Grover <andy.grover@oracle.com>
Diffstat (limited to 'net/rds')
-rw-r--r-- | net/rds/rdma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rds/rdma.c b/net/rds/rdma.c index abbc2979e7e5..1929cb8f17d7 100644 --- a/net/rds/rdma.c +++ b/net/rds/rdma.c | |||
@@ -238,7 +238,7 @@ static int __rds_rdma_map(struct rds_sock *rs, struct rds_get_mr_args *args, | |||
238 | * r/o or r/w. We need to assume r/w, or we'll do a lot of RDMA to | 238 | * r/o or r/w. We need to assume r/w, or we'll do a lot of RDMA to |
239 | * the zero page. | 239 | * the zero page. |
240 | */ | 240 | */ |
241 | ret = rds_pin_pages(args->vec.addr & PAGE_MASK, nr_pages, pages, 1); | 241 | ret = rds_pin_pages(args->vec.addr, nr_pages, pages, 1); |
242 | if (ret < 0) | 242 | if (ret < 0) |
243 | goto out; | 243 | goto out; |
244 | 244 | ||
@@ -595,7 +595,7 @@ static int rds_rdma_prepare(struct rds_message *rm, | |||
595 | /* If it's a WRITE operation, we want to pin the pages for reading. | 595 | /* If it's a WRITE operation, we want to pin the pages for reading. |
596 | * If it's a READ operation, we need to pin the pages for writing. | 596 | * If it's a READ operation, we need to pin the pages for writing. |
597 | */ | 597 | */ |
598 | ret = rds_pin_pages(vec.addr & PAGE_MASK, nr, pages, !op->r_write); | 598 | ret = rds_pin_pages(vec.addr, nr, pages, !op->r_write); |
599 | if (ret < 0) | 599 | if (ret < 0) |
600 | goto out; | 600 | goto out; |
601 | 601 | ||