summaryrefslogtreecommitdiff
path: root/drivers/infiniband/core/agent.h
diff options
context:
space:
mode:
authorIra Weiny <ira.weiny@intel.com>2015-05-31 21:15:31 (GMT)
committerDoug Ledford <dledford@redhat.com>2015-06-02 13:33:13 (GMT)
commit73cdaaeed10d91441cb946200b5dbbbeb143bace (patch)
treecfff94311926622f683fba849eacef99355545f1 /drivers/infiniband/core/agent.h
parenta97e2d86a9b88ea9e9a280b594b80f0eec2c955b (diff)
downloadlinux-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/core/agent.h b/drivers/infiniband/core/agent.h
index 6669287..94b5fb5 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_ */