#include <linux/module.h>
#include <linux/errno.h>
#include <linux/fs.h>
#include <linux/sched.h>
#include <linux/parser.h>
#include <linux/idr.h>
#include <linux/slab.h>
#include <net/9p/9p.h>
#include <net/9p/client.h>
#include <net/9p/transport.h>
#include "v9fs.h"
#include "v9fs_vfs.h"
#include "cache.h"
Go to the source code of this file.
|
enum | {
Opt_debug,
Opt_dfltuid,
Opt_dfltgid,
Opt_afid,
Opt_uname,
Opt_remotename,
Opt_trans,
Opt_cache,
Opt_cachetag,
Opt_nodevmap,
Opt_cache_loose,
Opt_fscache,
Opt_access,
Opt_posixacl,
Opt_err
} |
|
#define pr_fmt |
( |
|
fmt | ) |
KBUILD_MODNAME ": " fmt |
- Enumerator:
Opt_debug |
|
Opt_dfltuid |
|
Opt_dfltgid |
|
Opt_afid |
|
Opt_uname |
|
Opt_remotename |
|
Opt_trans |
|
Opt_cache |
|
Opt_cachetag |
|
Opt_nodevmap |
|
Opt_cache_loose |
|
Opt_fscache |
|
Opt_access |
|
Opt_posixacl |
|
Opt_err |
|
Definition at line 51 of file v9fs.c.
v9fs_session_begin_cancel - Begin terminate of a session : session to terminate
After this call we don't allow any request other than clunk.
Definition at line 452 of file v9fs.c.
v9fs_session_cancel - terminate a session : session to terminate
mark transport as disconnected and cancel all pending requests.
Definition at line 440 of file v9fs.c.
v9fs_session_close - shutdown a session : session information structure
Definition at line 410 of file v9fs.c.
v9fs_session_init - initialize session : session information structure : device being mounted : options
Definition at line 293 of file v9fs.c.