Lines Matching defs:kargs
63 struct puffs_kargs kargs;
65 if (mount(MOUNT_PUFFS, mountpoint, MNT_GETARGS, &kargs, sizeof(kargs)) == -1)
68 printf("version=%d, ", kargs.pa_vers);
69 printf("flags=0x%x, ", kargs.pa_flags);
71 printf("root cookie=%p, ", kargs.pa_root_cookie);
72 printf("root type=%s", vtypes[kargs.pa_root_vtype]);
74 if (kargs.pa_root_vtype != VDIR)
76 (unsigned long long)kargs.pa_root_vsize);
77 if (kargs.pa_root_vtype == VCHR || kargs.pa_root_vtype == VBLK)
78 printf(", root rdev=0x%" PRIx64, (uint64_t)kargs.pa_root_rdev);