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

  /src/sbin/tunefs/
tunefs.c 450 memcpy(&buf, (char *)&sblock, SBLOCKSIZE);
455 bwrite(sblockloc, buf.data, SBLOCKSIZE, special);
475 buf.data, SBLOCKSIZE, special);
665 bread(sblock_try[i] / dev_bsize, (char *)fs, SBLOCKSIZE, file);
  /src/sys/lib/libsa/
ufs.c 129 #define SBLOCKSIZE LFS_SBPAD
648 sblock_try[i] / GETSECSIZE(f), SBLOCKSIZE, fs, &buf_size);
651 if (buf_size != SBLOCKSIZE)
663 SBLOCKOFFSET / GETSECSIZE(f), SBLOCKSIZE, fs, &buf_size);
666 if (buf_size != SBLOCKSIZE)
708 fs = alloc(SBLOCKSIZE);
917 dealloc(fp->f_fs, SBLOCKSIZE);
  /src/usr.sbin/quotacheck/
quotacheck.c 87 #ifndef SBLOCKSIZE
88 # define SBLOCKSIZE SBSIZE
368 bread(sblock_try[i], (char *)&sblock, SBLOCKSIZE);
  /src/sbin/resize_ffs/
resize_ffs.c 89 static char sbbuf[2 * SBLOCKSIZE]
2077 memcpy(oldsb, newsb, SBLOCKSIZE);
2080 writeat(where / DEV_BSIZE, newsb, SBLOCKSIZE);
2084 writeat(FFS_FSBTODB(oldsb, cgsblock(oldsb, i)), newsb, SBLOCKSIZE);
2226 newsb = (struct fs *) (SBLOCKSIZE + (char *) &sbbuf);
2228 readat(where / DEV_BSIZE, oldsb, SBLOCKSIZE);
2275 * thing. SBLOCKSIZE may be an over-estimate, but we do this
2277 memcpy(newsb, oldsb, SBLOCKSIZE);
  /src/sys/ufs/ffs/
fs.h 69 * all cases the size of the superblock will be SBLOCKSIZE. All values are
97 #define SBLOCKSIZE 8192

Completed in 20 milliseconds