From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751476AbdAVAmV (ORCPT ); Sat, 21 Jan 2017 19:42:21 -0500 Received: from [160.91.203.10] ([160.91.203.10]:43642 "EHLO smtp1.ccs.ornl.gov" rhost-flags-FAIL-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1750889AbdAVAmP (ORCPT ); Sat, 21 Jan 2017 19:42:15 -0500 From: James Simmons To: Greg Kroah-Hartman , devel@driverdev.osuosl.org, Andreas Dilger , Oleg Drokin Cc: Linux Kernel Mailing List , Lustre Development List , James Simmons , James Simmons Subject: [PATCH 0/8] staging: lustre: lnet: change wire protocol typedefs to proper structure Date: Sat, 21 Jan 2017 19:40:24 -0500 Message-Id: <1485045632-5886-1-git-send-email-jsimmons@infradead.org> X-Mailer: git-send-email 1.8.3.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The upstream kernel requires proper structures so convert nearly all the LNet wire protocols typedefs in the LNet core. Signed-off-by: James Simmons Reviewed-on: https://review.whamcloud.com/24566 Reviewed-by: Doug Oucharek Reviewed-by: Olaf Weber Reviewed-by: Andreas Dilger Reviewed-by: Dmitry Eremin Signed-off-by: James Simmons James Simmons (8): staging: lustre: lnet: change lnet_handle_wire_t to proper structure staging: lustre: lnet: change lnet_ping_info_t to proper structure staging: lustre: lnet: change lnet_ni_status_t to proper structure staging: lustre: lnet: change lnet_process_id_packed_t to proper structure staging: lustre: lnet: change lnet_acceptor_connreq_t to proper structure staging: lustre: lnet: change lnet_magicversion_t to proper structure staging: lustre: lnet: change lnet_hdr_t to proper structure staging: lustre: lnet: change msg union in struct lnet_hdr to proper structure .../staging/lustre/include/linux/lnet/lib-lnet.h | 14 +- .../staging/lustre/include/linux/lnet/lib-types.h | 10 +- .../staging/lustre/include/linux/lnet/socklnd.h | 2 +- drivers/staging/lustre/include/linux/lnet/types.h | 70 ++++----- .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.h | 6 +- .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd_cb.c | 2 +- .../staging/lustre/lnet/klnds/socklnd/socklnd.h | 2 +- .../staging/lustre/lnet/klnds/socklnd/socklnd_cb.c | 14 +- .../lustre/lnet/klnds/socklnd/socklnd_proto.c | 26 ++-- drivers/staging/lustre/lnet/lnet/acceptor.c | 6 +- drivers/staging/lustre/lnet/lnet/api-ni.c | 170 ++++++++++----------- drivers/staging/lustre/lnet/lnet/lib-move.c | 20 +-- drivers/staging/lustre/lnet/lnet/lib-msg.c | 4 +- drivers/staging/lustre/lnet/lnet/lib-ptl.c | 2 +- drivers/staging/lustre/lnet/lnet/net_fault.c | 4 +- drivers/staging/lustre/lnet/lnet/router.c | 10 +- drivers/staging/lustre/lnet/selftest/conrpc.c | 10 +- drivers/staging/lustre/lnet/selftest/framework.c | 8 +- drivers/staging/lustre/lnet/selftest/selftest.h | 2 +- 19 files changed, 191 insertions(+), 191 deletions(-) -- 1.8.3.1 From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Simmons Date: Sat, 21 Jan 2017 19:40:24 -0500 Subject: [lustre-devel] [PATCH 0/8] staging: lustre: lnet: change wire protocol typedefs to proper structure Message-ID: <1485045632-5886-1-git-send-email-jsimmons@infradead.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Greg Kroah-Hartman , devel@driverdev.osuosl.org, Andreas Dilger , Oleg Drokin Cc: Linux Kernel Mailing List , Lustre Development List , James Simmons , James Simmons The upstream kernel requires proper structures so convert nearly all the LNet wire protocols typedefs in the LNet core. Signed-off-by: James Simmons Reviewed-on: https://review.whamcloud.com/24566 Reviewed-by: Doug Oucharek Reviewed-by: Olaf Weber Reviewed-by: Andreas Dilger Reviewed-by: Dmitry Eremin Signed-off-by: James Simmons James Simmons (8): staging: lustre: lnet: change lnet_handle_wire_t to proper structure staging: lustre: lnet: change lnet_ping_info_t to proper structure staging: lustre: lnet: change lnet_ni_status_t to proper structure staging: lustre: lnet: change lnet_process_id_packed_t to proper structure staging: lustre: lnet: change lnet_acceptor_connreq_t to proper structure staging: lustre: lnet: change lnet_magicversion_t to proper structure staging: lustre: lnet: change lnet_hdr_t to proper structure staging: lustre: lnet: change msg union in struct lnet_hdr to proper structure .../staging/lustre/include/linux/lnet/lib-lnet.h | 14 +- .../staging/lustre/include/linux/lnet/lib-types.h | 10 +- .../staging/lustre/include/linux/lnet/socklnd.h | 2 +- drivers/staging/lustre/include/linux/lnet/types.h | 70 ++++----- .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.h | 6 +- .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd_cb.c | 2 +- .../staging/lustre/lnet/klnds/socklnd/socklnd.h | 2 +- .../staging/lustre/lnet/klnds/socklnd/socklnd_cb.c | 14 +- .../lustre/lnet/klnds/socklnd/socklnd_proto.c | 26 ++-- drivers/staging/lustre/lnet/lnet/acceptor.c | 6 +- drivers/staging/lustre/lnet/lnet/api-ni.c | 170 ++++++++++----------- drivers/staging/lustre/lnet/lnet/lib-move.c | 20 +-- drivers/staging/lustre/lnet/lnet/lib-msg.c | 4 +- drivers/staging/lustre/lnet/lnet/lib-ptl.c | 2 +- drivers/staging/lustre/lnet/lnet/net_fault.c | 4 +- drivers/staging/lustre/lnet/lnet/router.c | 10 +- drivers/staging/lustre/lnet/selftest/conrpc.c | 10 +- drivers/staging/lustre/lnet/selftest/framework.c | 8 +- drivers/staging/lustre/lnet/selftest/selftest.h | 2 +- 19 files changed, 191 insertions(+), 191 deletions(-) -- 1.8.3.1