Commit b31e64c4 authored by James Simmons's avatar James Simmons Committed by Greg Kroah-Hartman
Browse files

staging: lustre: remove space in LNet function declarations



Several function declarations have spacing in them. Lets
remove all those instances reported by checkpatch.pl.

Signed-off-by: default avatarJames Simmons <jsimmons@infradead.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d3d3d37a
Loading
Loading
Loading
Loading
+135 −137
Original line number Diff line number Diff line
@@ -580,8 +580,7 @@ ksocknal_process_transmit (ksock_conn_t *conn, ksock_tx_t *tx)
		ksocknal_uncheck_zc_req(tx);

	/* it's not an error if conn is being closed */
	ksocknal_close_conn_and_siblings (conn,
					  (conn->ksnc_closing) ? 0 : rc);
	ksocknal_close_conn_and_siblings(conn, (conn->ksnc_closing) ? 0 : rc);

	return rc;
}
@@ -2567,8 +2566,7 @@ ksocknal_reaper (void *arg)

	while (!ksocknal_data.ksnd_shuttingdown) {
		if (!list_empty(&ksocknal_data.ksnd_deathrow_conns)) {
			conn = list_entry (ksocknal_data. \
					       ksnd_deathrow_conns.next,
			conn = list_entry(ksocknal_data.ksnd_deathrow_conns.next,
					  ksock_conn_t, ksnc_list);
			list_del(&conn->ksnc_list);

@@ -2582,8 +2580,8 @@ ksocknal_reaper (void *arg)
		}

		if (!list_empty(&ksocknal_data.ksnd_zombie_conns)) {
			conn = list_entry (ksocknal_data.ksnd_zombie_conns.\
					       next, ksock_conn_t, ksnc_list);
			conn = list_entry(ksocknal_data.ksnd_zombie_conns.next,
					  ksock_conn_t, ksnc_list);
			list_del(&conn->ksnc_list);

			spin_unlock_bh(&ksocknal_data.ksnd_reaper_lock);
+11 −11

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+13 −13

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.