svn commit: r267796 - stable/9/sys/rpc
Alexander Motin
mav at FreeBSD.org
Mon Jun 23 13:41:21 UTC 2014
Author: mav
Date: Mon Jun 23 13:41:20 2014
New Revision: 267796
URL: http://svnweb.freebsd.org/changeset/base/267796
Log:
Fix r267788 build on stable/9.
Modified:
stable/9/sys/rpc/svc.h
Modified: stable/9/sys/rpc/svc.h
==============================================================================
--- stable/9/sys/rpc/svc.h Mon Jun 23 13:24:00 2014 (r267795)
+++ stable/9/sys/rpc/svc.h Mon Jun 23 13:41:20 2014 (r267796)
@@ -291,7 +291,7 @@ STAILQ_HEAD(svc_reqlist, svc_req);
* thread to read and execute pending RPCs.
*/
typedef struct __rpc_svcthread {
- struct mtx_padalign st_lock; /* protects st_reqs field */
+ struct mtx st_lock; /* protects st_reqs field */
struct __rpc_svcpool *st_pool;
SVCXPRT *st_xprt; /* transport we are processing */
struct svc_reqlist st_reqs; /* RPC requests to execute */
@@ -319,7 +319,7 @@ enum svcpool_state {
SVCPOOL_CLOSING /* svc_exit called */
};
typedef struct __rpc_svcgroup {
- struct mtx_padalign sg_lock; /* protect the thread/req lists */
+ struct mtx sg_lock; /* protect the thread/req lists */
struct __rpc_svcpool *sg_pool;
enum svcpool_state sg_state; /* current pool state */
struct svcxprt_list sg_xlist; /* all transports in the group */
More information about the svn-src-stable-9
mailing list