Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c087567d authored by Trond Myklebust's avatar Trond Myklebust
Browse files

SUNRPC: Remove the obsolete RPC_WAITQ macro



Now that we've killed off all the users.

Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent a4a87499
Loading
Loading
Loading
Loading
+0 −23
Original line number Diff line number Diff line
@@ -217,29 +217,6 @@ struct rpc_wait_queue {
 * performance of NFS operations such as read/write.
 */
#define RPC_BATCH_COUNT			16

#ifndef RPC_DEBUG
# define RPC_WAITQ_INIT(var,qname) { \
		.lock = __SPIN_LOCK_UNLOCKED(var.lock), \
		.tasks = { \
			[0] = LIST_HEAD_INIT(var.tasks[0]), \
			[1] = LIST_HEAD_INIT(var.tasks[1]), \
			[2] = LIST_HEAD_INIT(var.tasks[2]), \
		}, \
	}
#else
# define RPC_WAITQ_INIT(var,qname) { \
		.lock = __SPIN_LOCK_UNLOCKED(var.lock), \
		.tasks = { \
			[0] = LIST_HEAD_INIT(var.tasks[0]), \
			[1] = LIST_HEAD_INIT(var.tasks[1]), \
			[2] = LIST_HEAD_INIT(var.tasks[2]), \
		}, \
		.name = qname, \
	}
#endif
# define RPC_WAITQ(var,qname)      struct rpc_wait_queue var = RPC_WAITQ_INIT(var,qname)

#define RPC_IS_PRIORITY(q)		((q)->maxpriority > 0)

/*