diff options
author | Eric Van Hensbergen <ericvh@ericvh-desktop.austin.ibm.com> | 2008-10-13 18:45:25 -0500 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2008-10-17 11:04:41 -0500 |
commit | 8b81ef589ad1483dd977ef47fe00d4ce4d91a0ab (patch) | |
tree | 380a19ca0f55fefc60c4a45771f5273c80539c07 /fs/9p | |
parent | 992b3f1dbeec401e19a80bdb8c81e5df5381f4c5 (diff) | |
download | linux-3.10-8b81ef589ad1483dd977ef47fe00d4ce4d91a0ab.tar.gz linux-3.10-8b81ef589ad1483dd977ef47fe00d4ce4d91a0ab.tar.bz2 linux-3.10-8b81ef589ad1483dd977ef47fe00d4ce4d91a0ab.zip |
9p: consolidate transport structure
Right now there is a transport module structure which provides per-transport
type functions and data and a transport structure which contains per-instance
public data as well as function pointers to instance specific functions.
This patch moves public transport visible instance data to the client
structure (which in some cases had duplicate data) and consolidates the
functions into the transport module structure.
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'fs/9p')
-rw-r--r-- | fs/9p/v9fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/9p/v9fs.c b/fs/9p/v9fs.c index c061c3f18e7..b6b85cf01e0 100644 --- a/fs/9p/v9fs.c +++ b/fs/9p/v9fs.c @@ -30,8 +30,8 @@ #include <linux/parser.h> #include <linux/idr.h> #include <net/9p/9p.h> -#include <net/9p/transport.h> #include <net/9p/client.h> +#include <net/9p/transport.h> #include "v9fs.h" #include "v9fs_vfs.h" |