mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-01 08:46:36 +09:00
lnet_return_rx_credits_locked: don't abuse list_entry
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user