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

  /src/usr.sbin/makefs/chfs/
chfs_mkfs.c 58 static uint64_t max_serial = 0; variable in typeref:typename:uint64_t
144 ebhdr.u.nand_hdr.serial = htole64(++(max_serial));
  /src/sys/ufs/chfs/
ebh.h 265 * @max_serial: max serial number of eraseblocks, only used on NAND
276 uint64_t *max_serial; member in struct:chfs_ebh
ebh.c 268 ebhdr->u.nand_hdr.serial = htole64(++(*ebh->max_serial));
1373 uint64_t max_serial; local in function:nand_process_eb
1413 max_serial = le64toh(ebhdr->u.nand_hdr.serial);
1414 if (max_serial > *ebh->max_serial) {
1415 *ebh->max_serial = max_serial;
1643 ebh->max_serial = NULL;
1661 ebh->max_serial = kmem_alloc(sizeof(uint64_t), KM_SLEEP);
1663 *ebh->max_serial = 0
    [all...]

Completed in 15 milliseconds