diff options
author | Kamal Heib <kamalheib1@gmail.com> | 2017-06-15 11:29:07 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-07-24 15:43:12 +0300 |
commit | b4fbec9673db22dcd3cea7ce04148af39fe19e12 (patch) | |
tree | e398d3fd850e09c2270f97f3834003b8d6c9a1bc /drivers/infiniband/sw/rxe/rxe_mmap.c | |
parent | 61013828f6673fffc6ead0a62d52674ffc1b34dc (diff) | |
download | linux-b4fbec9673db22dcd3cea7ce04148af39fe19e12.tar.xz |
IB/rxe: Constify static rxe_vm_ops
Constify static rxe_vm_ops that is never modified.
Signed-off-by: Kamal Heib <kamalh@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/sw/rxe/rxe_mmap.c')
-rw-r--r-- | drivers/infiniband/sw/rxe/rxe_mmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/sw/rxe/rxe_mmap.c b/drivers/infiniband/sw/rxe/rxe_mmap.c index bd812e00988e..d22431e3a908 100644 --- a/drivers/infiniband/sw/rxe/rxe_mmap.c +++ b/drivers/infiniband/sw/rxe/rxe_mmap.c @@ -76,7 +76,7 @@ static void rxe_vma_close(struct vm_area_struct *vma) kref_put(&ip->ref, rxe_mmap_release); } -static struct vm_operations_struct rxe_vm_ops = { +static const struct vm_operations_struct rxe_vm_ops = { .open = rxe_vma_open, .close = rxe_vma_close, }; |