Home
last modified time | relevance | path

Searched refs:TMPFS_DIRSEQ_END (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/sys/fs/tmpfs/
H A Dtmpfs_subr.c680 if (__predict_true(seq < TMPFS_DIRSEQ_END)) { in tmpfs_dir_getseq()
692 TMPFS_DIRSEQ_END - 1, 1, NULL, NULL, NULL, 0, in tmpfs_dir_getseq()
700 KASSERT(off < TMPFS_DIRSEQ_END); in tmpfs_dir_getseq()
701 seq = off | TMPFS_DIRSEQ_END; in tmpfs_dir_getseq()
713 if (seq == TMPFS_DIRSEQ_NONE || seq < TMPFS_DIRSEQ_END) { in tmpfs_dir_putseq()
719 KASSERT(seq >= TMPFS_DIRSEQ_END); in tmpfs_dir_putseq()
720 seq &= ~TMPFS_DIRSEQ_END; in tmpfs_dir_putseq()
H A Dtmpfs.h184 #define TMPFS_DIRSEQ_END (1U << 30) /* exclusive */ macro