From 21c11516b1a3511b0aaa34d8faaaff63c4117993 Mon Sep 17 00:00:00 2001 From: Shaun Tancheff Date: Tue, 5 May 2020 01:13:31 -0500 Subject: [PATCH] LU-13004 lnet: Correct signature in gnilnd.h kgnilnd_recv was updated correctly but the function prototype was not included. Test-Parameters: trivial Fixes: e35b7751f49 ("LU-13004 lnet: remove the 'struct kvec' arg from lnd_send") Signed-off-by: Shaun Tancheff Change-Id: I29db966ce54801391aa3c5c6426f03a327fea4b1 Reviewed-on: https://review.whamcloud.com/38491 Reviewed-by: James Simmons Tested-by: jenkins Reviewed-by: Chris Horn Tested-by: Maloo Reviewed-by: Neil Brown Reviewed-by: Oleg Drokin --- lnet/klnds/gnilnd/gnilnd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnet/klnds/gnilnd/gnilnd.h b/lnet/klnds/gnilnd/gnilnd.h index ae0b72f..178684c 100644 --- a/lnet/klnds/gnilnd/gnilnd.h +++ b/lnet/klnds/gnilnd/gnilnd.h @@ -1789,7 +1789,7 @@ int kgnilnd_eager_recv(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg, void **new_private); int kgnilnd_recv(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg, int delayed, unsigned int niov, - struct kvec *iov, struct bio_vec *kiov, + struct bio_vec *kiov, unsigned int offset, unsigned int mlen, unsigned int rlen); __u16 kgnilnd_cksum_kiov(unsigned int nkiov, struct bio_vec *kiov, -- 1.8.3.1