/src/usr.sbin/puffs/rump_syspuffs/ |
rump_syspuffs.c | 93 char comfd[16]; local in function:mount_syspuffs_parseargs 111 snprintf(comfd, sizeof(sv[0]), "%d", sv[0]); 112 if (setenv("PUFFS_COMFD", comfd, 1) == -1)
|
/src/sys/rump/fs/lib/libsyspuffs/ |
puffs_rumpglue.c | 53 int comfd; member in struct:ptargs 62 * Read requests from /dev/puffs and forward them to comfd 108 error = rumpuser_iovwrite(pap->comfd, &iov, 1, 121 /* Read requests from comfd and proxy them to /dev/puffs */ 151 error = rumpuser_iovread(pap->comfd, &iov, 1, 196 pap->comfd = fd;
|
/src/tests/fs/common/ |
fstest_puffs.c | 98 * Threads which shovel data between comfd and /dev/puffs. 109 int comfd, puffsfd; local in function:readshovel 111 comfd = args->pta_servfd; 144 if (xwrite(comfd, buf, n) != n) { 164 int comfd, puffsfd; local in function:writeshovel 168 comfd = args->pta_servfd; 185 n = xread(comfd, buf+off, toread); 253 char comfd[16]; local in function:donewfs 277 snprintf(comfd, sizeof(sv[0]), "%d", sv[0]); 278 if (setenv("PUFFS_COMFD", comfd, 1) == -1 [all...] |
/src/lib/libpuffs/ |
puffs.c | 522 char *comfd; local in function:puffs_mount 536 * Rather, it crams the mount data down the comfd and sets comfd as 542 if ((comfd = getenv("PUFFS_COMFD")) != NULL) { 545 if (sscanf(comfd, "%d", &pu->pu_fd) != 1) {
|