Home
last modified time | relevance | path

Searched refs:mount_tag (Results 1 – 8 of 8) sorted by relevance

/freebsd/sys/dev/virtio/p9fs/
H A Dvirtio_p9fs.c72 char *mount_tag; member
293 if (sc->mount_tag) { in vt9p_detach()
294 free(sc->mount_tag, M_P9FS_MNTTAG); in vt9p_detach()
295 sc->mount_tag = NULL; in vt9p_detach()
314 char *mount_tag; in vt9p_attach() local
344 mount_tag = malloc(mount_tag_len + 1, M_P9FS_MNTTAG, in vt9p_attach()
348 offsetof(struct virtio_9pnet_config, mount_tag), in vt9p_attach()
349 mount_tag, 1, mount_tag_len); in vt9p_attach()
351 device_printf(dev, "Mount tag: %s\n", mount_tag); in vt9p_attach()
355 chan->mount_tag = mount_tag; in vt9p_attach()
[all …]
H A Dvirtio_p9fs.h37 uint8_t mount_tag[0]; member
/freebsd/sys/fs/p9fs/
H A Dp9_transport.h40 int (*create)(const char *mount_tag, void **handlep);
H A Dp9_client.h120 const char *mount_tag);
H A Dp9fs.h160 char *mount_tag; /* mount tag used */ member
H A Dp9fs_subr.c73 vses->clnt = p9_client_create(mp, error, virtmp->mount_tag); in p9fs_init_session()
H A Dp9fs_vfsops.c427 vmp->mount_tag = from; in p9_mount()
H A Dp9_client.c537 p9_client_create(struct mount *mp, int *error, const char *mount_tag) in p9_client_create() argument
564 *error = clnt->ops->create(mount_tag, &clnt->handle); in p9_client_create()