OSDN Git Service

RDMA/amso1100: use offset_in_page macro
authorGeliang Tang <geliangtang@163.com>
Sat, 3 Oct 2015 03:00:14 +0000 (11:00 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 4 Oct 2015 12:11:19 +0000 (13:11 +0100)
Use offset_in_page macro instead of (addr & ~PAGE_MASK).

Signed-off-by: Geliang Tang <geliangtang@163.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rdma/amso1100/c2_alloc.c
drivers/staging/rdma/amso1100/c2_provider.c

index 78d247e..039872d 100644 (file)
@@ -131,7 +131,7 @@ void c2_free_mqsp(__be16 *mqsp)
        *mqsp = (__force __be16) head->head;
 
        /* Compute the shared_ptr index */
-       idx = ((unsigned long) mqsp & ~PAGE_MASK) >> 1;
+       idx = (offset_in_page(mqsp)) >> 1;
        idx -= (unsigned long) &(((struct sp_chunk *) 0)->shared_ptr[0]) >> 1;
 
        /* Point this index at the head */
index 25c3f00..956d76b 100644 (file)
@@ -359,7 +359,7 @@ static struct ib_mr *c2_reg_phys_mr(struct ib_pd *ib_pd,
 
        for (i = 0; i < num_phys_buf; i++) {
 
-               if (buffer_list[i].addr & ~PAGE_MASK) {
+               if (offset_in_page(buffer_list[i].addr)) {
                        pr_debug("Unaligned Memory Buffer: 0x%x\n",
                                (unsigned int) buffer_list[i].addr);
                        return ERR_PTR(-EINVAL);