mirror of https://gitee.com/openkylin/linux.git
Staging: lustre: lnet: Remove unnecessary parentheses on return
Removed three instances of parentheses in return calls that are unnecessary and do not contribute to readability. Signed-off-by: Miguel Bernabeu Diaz <miguelbernadi@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
276479ff68
commit
8a1d7b09e7
|
@ -721,14 +721,14 @@ kiblnd_nid2peerlist(lnet_nid_t nid)
|
||||||
unsigned int hash =
|
unsigned int hash =
|
||||||
((unsigned int)nid) % kiblnd_data.kib_peer_hash_size;
|
((unsigned int)nid) % kiblnd_data.kib_peer_hash_size;
|
||||||
|
|
||||||
return (&kiblnd_data.kib_peers[hash]);
|
return &kiblnd_data.kib_peers[hash];
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int
|
static inline int
|
||||||
kiblnd_peer_active(kib_peer_t *peer)
|
kiblnd_peer_active(kib_peer_t *peer)
|
||||||
{
|
{
|
||||||
/* Am I in the peer hash table? */
|
/* Am I in the peer hash table? */
|
||||||
return (!list_empty(&peer->ibp_list));
|
return !list_empty(&peer->ibp_list);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline kib_conn_t *
|
static inline kib_conn_t *
|
||||||
|
@ -833,7 +833,7 @@ kiblnd_wreqid2ptr(__u64 wreqid)
|
||||||
static inline int
|
static inline int
|
||||||
kiblnd_wreqid2type(__u64 wreqid)
|
kiblnd_wreqid2type(__u64 wreqid)
|
||||||
{
|
{
|
||||||
return (wreqid & IBLND_WID_MASK);
|
return wreqid & IBLND_WID_MASK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
|
|
Loading…
Reference in New Issue