Searched refs:jnl_lebs (Results 1 – 2 of 2) sorted by relevance
| /OK3568_Linux_fs/u-boot/fs/ubifs/ |
| H A D | sb.c | 80 int err, tmp, jnl_lebs, log_lebs, max_buds, main_lebs, main_first; in create_default_filesystem() local 95 jnl_lebs = c->leb_cnt * DEFAULT_JNL_PERCENT / 100; in create_default_filesystem() 97 jnl_lebs = (c->leb_cnt / 100) * DEFAULT_JNL_PERCENT; in create_default_filesystem() 99 if (jnl_lebs < UBIFS_MIN_JNL_LEBS) in create_default_filesystem() 100 jnl_lebs = UBIFS_MIN_JNL_LEBS; in create_default_filesystem() 101 if (jnl_lebs * c->leb_size > DEFAULT_MAX_JNL) in create_default_filesystem() 102 jnl_lebs = DEFAULT_MAX_JNL / c->leb_size; in create_default_filesystem() 110 tmp = 2 * (c->ref_node_alsz * jnl_lebs) + c->leb_size - 1; in create_default_filesystem() 120 max_buds = jnl_lebs - log_lebs; in create_default_filesystem()
|
| /OK3568_Linux_fs/kernel/fs/ubifs/ |
| H A D | sb.c | 81 int err, tmp, jnl_lebs, log_lebs, max_buds, main_lebs, main_first; in create_default_filesystem() local 100 jnl_lebs = c->leb_cnt * DEFAULT_JNL_PERCENT / 100; in create_default_filesystem() 102 jnl_lebs = (c->leb_cnt / 100) * DEFAULT_JNL_PERCENT; in create_default_filesystem() 104 if (jnl_lebs < UBIFS_MIN_JNL_LEBS) in create_default_filesystem() 105 jnl_lebs = UBIFS_MIN_JNL_LEBS; in create_default_filesystem() 106 if (jnl_lebs * c->leb_size > DEFAULT_MAX_JNL) in create_default_filesystem() 107 jnl_lebs = DEFAULT_MAX_JNL / c->leb_size; in create_default_filesystem() 115 tmp = 2 * (c->ref_node_alsz * jnl_lebs) + c->leb_size - 1; in create_default_filesystem() 125 max_buds = jnl_lebs - log_lebs; in create_default_filesystem()
|