]> pilppa.org Git - linux-2.6-omap-h63xx.git/commit
SUNRPC: Pass a family argument to svc_register()
authorChuck Lever <chuck.lever@oracle.com>
Thu, 19 Mar 2009 00:46:06 +0000 (20:46 -0400)
committerTrond Myklebust <Trond.Myklebust@netapp.com>
Sat, 28 Mar 2009 19:54:12 +0000 (15:54 -0400)
commit4b62e58cccff9c5e7ffc7023f7ec24c75fbd549b
tree34965810fe2a9aff001dd193a3cb925c2c3e1abd
parent156e62094a74cf43f02f56ef96b6cda567501357
SUNRPC: Pass a family argument to svc_register()

The sv_family field is going away.  Instead of using sv_family, have
the svc_register() function take a protocol family argument.

Since this argument represents a protocol family, and not an address
family, this argument takes an int, as this is what is passed to
sock_create_kern().  Also make sure svc_register's helpers are
checking for PF_FOO instead of AF_FOO.  The value of [AP]F_FOO are
equivalent; this is simply a symbolic change to reflect the semantics
of the value stored in that variable.

sock_create_kern() should return EPFNOSUPPORT if the passed-in
protocol family isn't supported, but it uses EAFNOSUPPORT for this
case.  We will stick with that tradition here, as svc_register()
is called by the RPC server in the same path as sock_create_kern().

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
include/linux/sunrpc/svc.h
net/sunrpc/svc.c
net/sunrpc/svcsock.c