Searched refs:mount_tag (Results 1 – 8 of 8) sorted by relevance
/freebsd/sys/dev/virtio/p9fs/ |
H A D | virtio_p9fs.c | 72 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 D | virtio_p9fs.h | 37 uint8_t mount_tag[0]; member
|
/freebsd/sys/fs/p9fs/ |
H A D | p9_transport.h | 40 int (*create)(const char *mount_tag, void **handlep);
|
H A D | p9_client.h | 120 const char *mount_tag);
|
H A D | p9fs.h | 160 char *mount_tag; /* mount tag used */ member
|
H A D | p9fs_subr.c | 73 vses->clnt = p9_client_create(mp, error, virtmp->mount_tag); in p9fs_init_session()
|
H A D | p9fs_vfsops.c | 427 vmp->mount_tag = from; in p9_mount()
|
H A D | p9_client.c | 537 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()
|