diff options
author | Ira Weiny <ira.weiny@intel.com> | 2015-06-01 00:15:31 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2015-06-02 16:33:13 +0300 |
commit | 73cdaaeed10d91441cb946200b5dbbbeb143bace (patch) | |
tree | cfff94311926622f683fba849eacef99355545f1 /drivers/infiniband/core/agent.h | |
parent | a97e2d86a9b88ea9e9a280b594b80f0eec2c955b (diff) | |
download | linux-73cdaaeed10d91441cb946200b5dbbbeb143bace.tar.xz |
IB/core cleanup: Add const to args - agent_send_response
In order to support constant callers of agent_send_response we add const
specifiers to the its pointer arguments.
Adjust the call tree accordingly.
Signed-off-by: Ira Weiny <ira.weiny@intel.com>
Reviewed-by: Hal Rosenstock <hal@mellanox.com>
Reviewed-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/core/agent.h')
-rw-r--r-- | drivers/infiniband/core/agent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/core/agent.h b/drivers/infiniband/core/agent.h index 6669287009c2..94b5fb5b3eef 100644 --- a/drivers/infiniband/core/agent.h +++ b/drivers/infiniband/core/agent.h @@ -44,8 +44,8 @@ extern int ib_agent_port_open(struct ib_device *device, int port_num); extern int ib_agent_port_close(struct ib_device *device, int port_num); -extern void agent_send_response(struct ib_mad *mad, struct ib_grh *grh, - struct ib_wc *wc, struct ib_device *device, +extern void agent_send_response(const struct ib_mad *mad, const struct ib_grh *grh, + const struct ib_wc *wc, const struct ib_device *device, int port_num, int qpn); #endif /* __AGENT_H_ */ |