Home
last modified time | relevance | path

Searched refs:spc (Results 1 – 6 of 6) sorted by relevance

/linux-4.19.296/fs/xfs/scrub/
Dparent.c57 struct xchk_parent_ctx *spc; in xchk_parent_actor() local
59 spc = container_of(dc, struct xchk_parent_ctx, dc); in xchk_parent_actor()
60 if (spc->ino == ino) in xchk_parent_actor()
61 spc->nlink++; in xchk_parent_actor()
72 struct xchk_parent_ctx spc = { in xchk_parent_count_parent_dentries() local
105 error = xfs_readdir(sc->tp, parent, &spc.dc, bufsize); in xchk_parent_count_parent_dentries()
108 if (oldpos == spc.dc.pos) in xchk_parent_count_parent_dentries()
110 oldpos = spc.dc.pos; in xchk_parent_count_parent_dentries()
112 *nlink = spc.nlink; in xchk_parent_count_parent_dentries()
/linux-4.19.296/block/partitions/
Dsun.c60 unsigned long spc; in sun_partition() local
101 spc = be16_to_cpu(label->ntrks) * be16_to_cpu(label->nsect); in sun_partition()
106 st_sector = be32_to_cpu(p->start_cylinder) * spc; in sun_partition()
/linux-4.19.296/fs/ubifs/
Dlprops.c479 int ubifs_calc_dark(const struct ubifs_info *c, int spc) in ubifs_calc_dark() argument
481 ubifs_assert(c, !(spc & 7)); in ubifs_calc_dark()
483 if (spc < c->dark_wm) in ubifs_calc_dark()
484 return spc; in ubifs_calc_dark()
491 if (spc - c->dark_wm < MIN_WRITE_SZ) in ubifs_calc_dark()
492 return spc - MIN_WRITE_SZ; in ubifs_calc_dark()
1229 int spc = free + dirty; in scan_check_cb() local
1231 if (spc < c->dead_wm) in scan_check_cb()
1232 lst->total_dead += spc; in scan_check_cb()
1234 lst->total_dark += ubifs_calc_dark(c, spc); in scan_check_cb()
Ddebug.c651 int i, spc, dark = 0, dead = 0; in ubifs_dump_lprop() local
655 spc = lp->free + lp->dirty; in ubifs_dump_lprop()
656 if (spc < c->dead_wm) in ubifs_dump_lprop()
657 dead = spc; in ubifs_dump_lprop()
659 dark = ubifs_calc_dark(c, spc); in ubifs_dump_lprop()
663 lp->lnum, lp->free, lp->dirty, c->leb_size - spc, spc, in ubifs_dump_lprop()
667 lp->lnum, lp->free, lp->dirty, c->leb_size - spc, spc, in ubifs_dump_lprop()
668 dark, dead, (int)(spc / UBIFS_MAX_NODE_SZ), lp->flags); in ubifs_dump_lprop()
Dubifs.h1752 int ubifs_calc_dark(const struct ubifs_info *c, int spc);
/linux-4.19.296/drivers/cpufreq/
DMakefile87 obj-$(CONFIG_ARM_VEXPRESS_SPC_CPUFREQ) += vexpress-spc-cpufreq.o