All of lore.kernel.org
 help / color / mirror / Atom feed
* [lustre-devel] [PATCH 00/24] staging: lustre: selftest: remove typedefs
@ 2016-04-06 19:25 ` James Simmons
  0 siblings, 0 replies; 52+ messages in thread
From: James Simmons @ 2016-04-06 19:25 UTC (permalink / raw)
  To: Greg Kroah-Hartman, devel, Andreas Dilger, Oleg Drokin
  Cc: Linux Kernel Mailing List, Lustre Development List, James Simmons

The lnet selftest code is littered with typedefs. Convert these
typedefs into their proper data types.

James Simmons (24):
  staging: lustre: selftest: convert srpc_event_type to proper enum
  staging: lustre: selftest: convert srpc_event_t to proper struct
  staging: lustre: selftest: convert srpc_bulk_t to proper struct
  staging: lustre: selftest: convert srpc_buffer_t to proper struct
  staging: lustre: selftest: convert swi_workitem_t to proper struct
  staging: lustre: selftest: convert srpc_client_rpc_t to proper struct
  staging: lustre: selftest: convert srpc_service_t to proper struct
  staging: lustre: selftest: convert sfw_session_t to proper struct
  staging: lustre: selftest: convert sfw_batch_t to proper struct
  staging: lustre: selftest: convert sfw_test_client_ops_t to proper struct
  staging: lustre: selftest: convert sfw_test_instance_t to proper struct
  staging: lustre: selftest: convert sfw_test_unit_t to proper struct
  staging: lustre: selftest: convert sfw_test_case_t to proper struct
  staging: lustre: selftest: convert lstcon_rpc_t to proper struct
  staging: lustre: selftest: convert lstcon_rpc_trans_t to proper struct
  staging: lustre: selftest: convert lstcon_node_t to proper struct
  staging: lustre: selftest: convert lstcon_ndlink_t to proper struct
  staging: lustre: selftest: convert lstcon_group_t to proper struct
  staging: lustre: selftest: convert lstcon_tsb_hdr_t to proper struct
  staging: lustre: selftest: convert lstcon_batch_t to proper struct
  staging: lustre: selftest: convert lstcon_test_t to proper struct
  staging: lustre: selftest: convert srpc_msg_t to proper struct
  staging: lustre: selftest: convert wire protocol to use struct
  staging: lustre: selftest: change srpc_state_t to proper enum

 drivers/staging/lustre/lnet/selftest/brw_test.c  |   76 +++---
 drivers/staging/lustre/lnet/selftest/conctl.c    |    2 +-
 drivers/staging/lustre/lnet/selftest/conrpc.c    |  196 ++++++++--------
 drivers/staging/lustre/lnet/selftest/conrpc.h    |   40 ++--
 drivers/staging/lustre/lnet/selftest/console.c   |  271 +++++++++++-----------
 drivers/staging/lustre/lnet/selftest/console.h   |   47 ++--
 drivers/staging/lustre/lnet/selftest/framework.c |  256 ++++++++++----------
 drivers/staging/lustre/lnet/selftest/ping_test.c |   42 ++--
 drivers/staging/lustre/lnet/selftest/rpc.c       |  123 +++++-----
 drivers/staging/lustre/lnet/selftest/rpc.h       |  156 +++++++------
 drivers/staging/lustre/lnet/selftest/selftest.h  |  200 ++++++++--------
 11 files changed, 714 insertions(+), 695 deletions(-)

^ permalink raw reply	[flat|nested] 52+ messages in thread

end of thread, other threads:[~2016-04-12  4:18 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-06 19:25 [lustre-devel] [PATCH 00/24] staging: lustre: selftest: remove typedefs James Simmons
2016-04-06 19:25 ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 01/24] staging: lustre: selftest: convert srpc_event_type to proper enum James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 02/24] staging: lustre: selftest: convert srpc_event_t to proper struct James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 03/24] staging: lustre: selftest: convert srpc_bulk_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 04/24] staging: lustre: selftest: convert srpc_buffer_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 05/24] staging: lustre: selftest: convert swi_workitem_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 06/24] staging: lustre: selftest: convert srpc_client_rpc_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 07/24] staging: lustre: selftest: convert srpc_service_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 08/24] staging: lustre: selftest: convert sfw_session_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 09/24] staging: lustre: selftest: convert sfw_batch_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 10/24] staging: lustre: selftest: convert sfw_test_client_ops_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 11/24] staging: lustre: selftest: convert sfw_test_instance_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 12/24] staging: lustre: selftest: convert sfw_test_unit_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 13/24] staging: lustre: selftest: convert sfw_test_case_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 14/24] staging: lustre: selftest: convert lstcon_rpc_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 15/24] staging: lustre: selftest: convert lstcon_rpc_trans_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 16/24] staging: lustre: selftest: convert lstcon_node_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 17/24] staging: lustre: selftest: convert lstcon_ndlink_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 18/24] staging: lustre: selftest: convert lstcon_group_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 19/24] staging: lustre: selftest: convert lstcon_tsb_hdr_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 20/24] staging: lustre: selftest: convert lstcon_batch_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 21/24] staging: lustre: selftest: convert lstcon_test_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 22/24] staging: lustre: selftest: convert srpc_msg_t " James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 23/24] staging: lustre: selftest: convert wire protocol to use struct James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-06 19:25 ` [lustre-devel] [PATCH 24/24] staging: lustre: selftest: change srpc_state_t to proper enum James Simmons
2016-04-06 19:25   ` James Simmons
2016-04-12  4:03 ` [lustre-devel] [PATCH 00/24] staging: lustre: selftest: remove typedefs Greg Kroah-Hartman
2016-04-12  4:03   ` Greg Kroah-Hartman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.