HomeSort by: relevance | last modified time | path
    Searched defs:fsg (Results 1 - 3 of 3) sorted by relevancy

  /src/sbin/dump/
snapshot.c 63 struct fss_get fsg; local in function:snap_open
175 if (ioctl(fd, FSSIOCGET, &fsg) < 0) {
183 *snap_date = fsg.fsg_time.tv_sec;
  /src/usr.sbin/fssconfig/
fssconfig.c 231 struct fss_get fsg; local in function:list
254 if (prog_ioctl(fd, FSSIOCGET, &fsg) < 0) {
261 (int64_t)fsg.fsg_csize,
265 (int64_t)fsg.fsg_bs_size*fsg.fsg_csize,
268 t = fsg.fsg_time.tv_sec;
271 printf("%s: %s, taken %s", dev, fsg.fsg_mount, tmbuf);
274 if (fsg.fsg_csize == 0)
278 fsg.fsg_mount_size, clbuf, bsbuf);
280 printf("%s: %s\n", dev, fsg.fsg_mount)
    [all...]
  /src/sys/dev/
fss.c 340 struct fss_get *fsg = (struct fss_get *)data; local in function:fss_ioctl
460 memcpy(fsg->fsg_mount, sc->sc_mntname, MNAMELEN);
461 fsg->fsg_csize = FSS_CLSIZE(sc);
462 fsg->fsg_time = sc->sc_time;
463 fsg->fsg_mount_size = sc->sc_clcount;
464 fsg->fsg_bs_size = sc->sc_clnext;
467 memcpy(fsg->fsg_mount, sc->sc_mntname, MNAMELEN);
468 fsg->fsg_csize = 0;
469 fsg->fsg_time = sc->sc_time;
470 fsg->fsg_mount_size = 0
    [all...]

Completed in 13 milliseconds