diff options
author | Ira Weiny <ira.weiny@intel.com> | 2016-07-28 12:27:28 -0400 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2016-08-02 22:46:21 -0400 |
commit | ac335e7e8079d08441aba46ce2c07398b603719f (patch) | |
tree | 13773ac7b75edb58c51bb16582683c310976dad4 /drivers/infiniband | |
parent | fc87879ae237785704a6b6a54c1c5a47c395662c (diff) | |
download | linux-stable-ac335e7e8079d08441aba46ce2c07398b603719f.tar.gz linux-stable-ac335e7e8079d08441aba46ce2c07398b603719f.tar.bz2 linux-stable-ac335e7e8079d08441aba46ce2c07398b603719f.zip |
IB/hfi1: Add parameter names to function declarations
Parameter names to function declarations make it more clear
what those parameters do.
Reviewed-by: Dean Luick <dean.luick@intel.com>
Signed-off-by: Ira Weiny <ira.weiny@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/hw/hfi1/hfi.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/infiniband/hw/hfi1/hfi.h b/drivers/infiniband/hw/hfi1/hfi.h index 63ce587d6f94..6fb86fee0701 100644 --- a/drivers/infiniband/hw/hfi1/hfi.h +++ b/drivers/infiniband/hw/hfi1/hfi.h @@ -1700,9 +1700,11 @@ void shutdown_led_override(struct hfi1_pportdata *ppd); */ #define DEFAULT_RCVHDR_ENTSIZE 32 -bool hfi1_can_pin_pages(struct hfi1_devdata *, u32, u32); -int hfi1_acquire_user_pages(unsigned long, size_t, bool, struct page **); -void hfi1_release_user_pages(struct mm_struct *, struct page **, size_t, bool); +bool hfi1_can_pin_pages(struct hfi1_devdata *dd, u32 nlocked, u32 npages); +int hfi1_acquire_user_pages(unsigned long vaddr, size_t npages, bool writable, + struct page **pages); +void hfi1_release_user_pages(struct mm_struct *mm, struct page **p, + size_t npages, bool dirty); static inline void clear_rcvhdrtail(const struct hfi1_ctxtdata *rcd) { |