Commit 6d1ff4d6 authored by Al Viro's avatar Al Viro

lnet_return_rx_credits_locked: don't abuse list_entry

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 83683dc6
......@@ -889,7 +889,7 @@ lnet_return_rx_credits_locked(struct lnet_msg *msg)
*/
LASSERT(msg->msg_kiov);
rb = list_entry(msg->msg_kiov, struct lnet_rtrbuf, rb_kiov[0]);
rb = container_of(msg->msg_kiov, struct lnet_rtrbuf, rb_kiov[0]);
rbp = rb->rb_pool;
msg->msg_kiov = NULL;
......
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