Staging: lustre: lnet: Remove and rename struct typedef lstcon_session_t
authorBhumika Goyal <bhumirks@gmail.com>
Fri, 19 Feb 2016 13:43:52 +0000 (19:13 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 20 Feb 2016 22:39:54 +0000 (14:39 -0800)
This patch gets rid of struct typedef lstcon_session_t as it is not
suggested to use typdefs for structure types. Also drop '_t' from the name.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lnet/selftest/console.c
drivers/staging/lustre/lnet/selftest/console.h

index 54fb1ab521bd2cb96bc02a63b3d4674608435f82..1385dc0baef9c818ee3aea36d60d61ea2847696d 100644 (file)
@@ -58,7 +58,7 @@ do {                                                  \
        (p)->nle_nnode++;                               \
 } while (0)
 
-lstcon_session_t console_session;
+struct lstcon_session console_session;
 
 static void
 lstcon_node_get(lstcon_node_t *nd)
@@ -1994,7 +1994,7 @@ lstcon_console_init(void)
        int i;
        int rc;
 
-       memset(&console_session, 0, sizeof(lstcon_session_t));
+       memset(&console_session, 0, sizeof(struct lstcon_session));
 
        console_session.ses_id            = LST_INVALID_SID;
        console_session.ses_state         = LST_SESSION_NONE;
index 5651b085a0a1de2c6ebffa31b716eb76604e0327..b7e14e4a1f7042ed2cf3b8127b08f63d684405d9 100644 (file)
@@ -135,7 +135,7 @@ typedef struct lstcon_test {
 
 #define LST_CONSOLE_TIMEOUT 300             /* default console timeout */
 
-typedef struct {
+struct lstcon_session {
        struct mutex        ses_mutex;        /* only 1 thread in session */
        lst_sid_t           ses_id;           /* global session id */
        int                 ses_key;          /* local session key */
@@ -165,9 +165,9 @@ typedef struct {
        spinlock_t          ses_rpc_lock;     /* serialize */
        atomic_t            ses_rpc_counter;  /* # of initialized RPCs */
        struct list_head    ses_rpc_freelist; /* idle console rpc */
-} lstcon_session_t; /* session descriptor */
+}; /* session descriptor */
 
-extern lstcon_session_t         console_session;
+extern struct lstcon_session    console_session;
 
 static inline lstcon_trans_stat_t *
 lstcon_trans_stat(void)
This page took 0.028097 seconds and 5 git commands to generate.