Commit f766c58f authored by Ira Weiny's avatar Ira Weiny Committed by Doug Ledford

IB/mad: Add const qualifiers to query only functions

The following functions only need read access to the data passed to them.

ib_mad_kernel_rmpp_agent
is_rmpp_data_mad
rcv_has_same_gid
ib_find_send_mad

Clarify with const specifiers
Signed-off-by: default avatarIra Weiny <ira.weiny@intel.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 8bf4b30c
...@@ -910,7 +910,7 @@ static int alloc_send_rmpp_list(struct ib_mad_send_wr_private *send_wr, ...@@ -910,7 +910,7 @@ static int alloc_send_rmpp_list(struct ib_mad_send_wr_private *send_wr,
return 0; return 0;
} }
int ib_mad_kernel_rmpp_agent(struct ib_mad_agent *agent) int ib_mad_kernel_rmpp_agent(const struct ib_mad_agent *agent)
{ {
return agent->rmpp_version && !(agent->flags & IB_MAD_USER_RMPP); return agent->rmpp_version && !(agent->flags & IB_MAD_USER_RMPP);
} }
...@@ -1734,8 +1734,8 @@ static int validate_mad(const struct ib_mad_hdr *mad_hdr, u32 qp_num) ...@@ -1734,8 +1734,8 @@ static int validate_mad(const struct ib_mad_hdr *mad_hdr, u32 qp_num)
return valid; return valid;
} }
static int is_rmpp_data_mad(struct ib_mad_agent_private *mad_agent_priv, static int is_rmpp_data_mad(const struct ib_mad_agent_private *mad_agent_priv,
struct ib_mad_hdr *mad_hdr) const struct ib_mad_hdr *mad_hdr)
{ {
struct ib_rmpp_mad *rmpp_mad; struct ib_rmpp_mad *rmpp_mad;
...@@ -1754,9 +1754,9 @@ static inline int rcv_has_same_class(const struct ib_mad_send_wr_private *wr, ...@@ -1754,9 +1754,9 @@ static inline int rcv_has_same_class(const struct ib_mad_send_wr_private *wr,
rwc->recv_buf.mad->mad_hdr.mgmt_class; rwc->recv_buf.mad->mad_hdr.mgmt_class;
} }
static inline int rcv_has_same_gid(struct ib_mad_agent_private *mad_agent_priv, static inline int rcv_has_same_gid(const struct ib_mad_agent_private *mad_agent_priv,
struct ib_mad_send_wr_private *wr, const struct ib_mad_send_wr_private *wr,
struct ib_mad_recv_wc *rwc ) const struct ib_mad_recv_wc *rwc )
{ {
struct ib_ah_attr attr; struct ib_ah_attr attr;
u8 send_resp, rcv_resp; u8 send_resp, rcv_resp;
...@@ -1811,8 +1811,8 @@ static inline int is_direct(u8 class) ...@@ -1811,8 +1811,8 @@ static inline int is_direct(u8 class)
} }
struct ib_mad_send_wr_private* struct ib_mad_send_wr_private*
ib_find_send_mad(struct ib_mad_agent_private *mad_agent_priv, ib_find_send_mad(const struct ib_mad_agent_private *mad_agent_priv,
struct ib_mad_recv_wc *wc) const struct ib_mad_recv_wc *wc)
{ {
struct ib_mad_send_wr_private *wr; struct ib_mad_send_wr_private *wr;
struct ib_mad *mad; struct ib_mad *mad;
......
...@@ -213,8 +213,8 @@ struct ib_mad_port_private { ...@@ -213,8 +213,8 @@ struct ib_mad_port_private {
int ib_send_mad(struct ib_mad_send_wr_private *mad_send_wr); int ib_send_mad(struct ib_mad_send_wr_private *mad_send_wr);
struct ib_mad_send_wr_private * struct ib_mad_send_wr_private *
ib_find_send_mad(struct ib_mad_agent_private *mad_agent_priv, ib_find_send_mad(const struct ib_mad_agent_private *mad_agent_priv,
struct ib_mad_recv_wc *mad_recv_wc); const struct ib_mad_recv_wc *mad_recv_wc);
void ib_mad_complete_send_wr(struct ib_mad_send_wr_private *mad_send_wr, void ib_mad_complete_send_wr(struct ib_mad_send_wr_private *mad_send_wr,
struct ib_mad_send_wc *mad_send_wc); struct ib_mad_send_wc *mad_send_wc);
......
...@@ -675,6 +675,6 @@ void ib_free_send_mad(struct ib_mad_send_buf *send_buf); ...@@ -675,6 +675,6 @@ void ib_free_send_mad(struct ib_mad_send_buf *send_buf);
* @agent: the agent in question * @agent: the agent in question
* @return: true if agent is performing rmpp, false otherwise. * @return: true if agent is performing rmpp, false otherwise.
*/ */
int ib_mad_kernel_rmpp_agent(struct ib_mad_agent *agent); int ib_mad_kernel_rmpp_agent(const struct ib_mad_agent *agent);
#endif /* IB_MAD_H */ #endif /* IB_MAD_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment