Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 34792
b: refs/heads/master
c: b86acd5
h: refs/heads/master
v: v3
  • Loading branch information
Chuck Lever authored and Trond Myklebust committed Sep 23, 2006
1 parent ffe1160 commit f20b874
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ff9aa5e56df60cc8565a93cc868fe25ae3f20e49
refs/heads/master: b86acd501a34227e0ed2b2d54dc8002c1701ce17
10 changes: 5 additions & 5 deletions trunk/net/sunrpc/clnt.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ struct rpc_clnt *rpc_create(struct rpc_create_args *args)

return clnt;
}
EXPORT_SYMBOL(rpc_create);
EXPORT_SYMBOL_GPL(rpc_create);

/*
* This function clones the RPC client structure. It allows us to share the
Expand Down Expand Up @@ -573,7 +573,7 @@ size_t rpc_peeraddr(struct rpc_clnt *clnt, struct sockaddr *buf, size_t bufsize)
memcpy(buf, &clnt->cl_xprt->addr, bytes);
return xprt->addrlen;
}
EXPORT_SYMBOL(rpc_peeraddr);
EXPORT_SYMBOL_GPL(rpc_peeraddr);

/**
* rpc_peeraddr2str - return remote peer address in printable format
Expand All @@ -586,7 +586,7 @@ char *rpc_peeraddr2str(struct rpc_clnt *clnt, enum rpc_display_format_t format)
struct rpc_xprt *xprt = clnt->cl_xprt;
return xprt->ops->print_addr(xprt, format);
}
EXPORT_SYMBOL(rpc_peeraddr2str);
EXPORT_SYMBOL_GPL(rpc_peeraddr2str);

void
rpc_setbufsize(struct rpc_clnt *clnt, unsigned int sndsize, unsigned int rcvsize)
Expand All @@ -608,7 +608,7 @@ size_t rpc_max_payload(struct rpc_clnt *clnt)
{
return clnt->cl_xprt->max_payload;
}
EXPORT_SYMBOL(rpc_max_payload);
EXPORT_SYMBOL_GPL(rpc_max_payload);

/**
* rpc_force_rebind - force transport to check that remote port is unchanged
Expand All @@ -620,7 +620,7 @@ void rpc_force_rebind(struct rpc_clnt *clnt)
if (clnt->cl_autobind)
xprt_clear_bound(clnt->cl_xprt);
}
EXPORT_SYMBOL(rpc_force_rebind);
EXPORT_SYMBOL_GPL(rpc_force_rebind);

/*
* Restart an (async) RPC call. Usually called from within the
Expand Down

0 comments on commit f20b874

Please sign in to comment.