Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9f29868b491beee706931e0cf875a60cb4688754
Commit:     9f29868b491beee706931e0cf875a60cb4688754
Parent:     360d873864c8903a650b227758b49dd50e6ecc9f
Author:     Tom Tucker <[EMAIL PROTECTED]>
AuthorDate: Sun Dec 30 21:07:19 2007 -0600
Committer:  J. Bruce Fields <[EMAIL PROTECTED]>
CommitDate: Fri Feb 1 16:42:08 2008 -0500

    svc: Change the svc_sock in the rqstp structure to a transport
    
    The rqstp structure contains a pointer to the transport for the
    RPC request. This functionaly trivial patch adds an unamed union
    with pointers to both svc_sock and svc_xprt. Ultimately the
    union will be removed and only the rq_xprt field will remain. This
    allows incrementally extracting transport independent interfaces without
    one gigundo patch.
    
    Signed-off-by: Tom Tucker <[EMAIL PROTECTED]>
    Acked-by: Neil Brown <[EMAIL PROTECTED]>
    Reviewed-by: Chuck Lever <[EMAIL PROTECTED]>
    Reviewed-by: Greg Banks <[EMAIL PROTECTED]>
    Signed-off-by: J. Bruce Fields <[EMAIL PROTECTED]>
---
 include/linux/sunrpc/svc.h |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/include/linux/sunrpc/svc.h b/include/linux/sunrpc/svc.h
index 8531a70..37f7448 100644
--- a/include/linux/sunrpc/svc.h
+++ b/include/linux/sunrpc/svc.h
@@ -204,7 +204,10 @@ union svc_addr_u {
 struct svc_rqst {
        struct list_head        rq_list;        /* idle list */
        struct list_head        rq_all;         /* all threads list */
-       struct svc_sock *       rq_sock;        /* socket */
+       union {
+               struct svc_xprt *       rq_xprt;        /* transport ptr */
+               struct svc_sock *       rq_sock;        /* socket ptr */
+       };
        struct sockaddr_storage rq_addr;        /* peer address */
        size_t                  rq_addrlen;
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to