diff options
author | Rob Landley <rob@landley.net> | 2011-05-08 18:46:38 (GMT) |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2011-05-25 13:46:37 (GMT) |
commit | aca0076336d0cb689b87640194df794a0fedadc3 (patch) | |
tree | 4d7dad12b07ea683185a2a08ea5a298155cfe911 /include/net/9p/transport.h | |
parent | 961a5a5028b8ae6fe91f28d5a81696de90b74bc2 (diff) | |
download | linux-aca0076336d0cb689b87640194df794a0fedadc3.tar.xz |
9p: typo fixes and minor cleanups
Typo fixes and minor cleanups for v9fs
Signed-off-by: Rob Landley <rob@landley.net>
Reviewed-by: Venkateswararao Jujjuri (JV) <jvrao@linux.vnet.ibm.com>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'include/net/9p/transport.h')
-rw-r--r-- | include/net/9p/transport.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/9p/transport.h b/include/net/9p/transport.h index 8f08c73..d8549fb 100644 --- a/include/net/9p/transport.h +++ b/include/net/9p/transport.h @@ -41,6 +41,7 @@ * @pref: Preferences of this transport * @def: set if this transport should be considered the default * @create: member function to create a new connection on this transport + * @close: member function to discard a connection on this transport * @request: member function to issue a request to the transport * @cancel: member function to cancel a request (if it hasn't been sent) * @@ -48,7 +49,7 @@ * transport module with the 9P core network module and used by the client * to instantiate a new connection on a transport. * - * BUGS: the transport module list isn't protected. + * The transport module list is protected by v9fs_trans_lock. */ struct p9_trans_module { |