Searched refs:max_write_size (Results 1 – 7 of 7) sorted by relevance
/linux-4.19.296/fs/ubifs/ |
D | io.c | 527 ubifs_assert(c, wbuf->size <= c->max_write_size); in ubifs_wbuf_sync_nolock() 530 if (c->leb_size - wbuf->offs >= c->max_write_size) in ubifs_wbuf_sync_nolock() 531 ubifs_assert(c, !((wbuf->offs + wbuf->size) % c->max_write_size)); in ubifs_wbuf_sync_nolock() 560 if (c->leb_size - wbuf->offs < c->max_write_size) in ubifs_wbuf_sync_nolock() 562 else if (wbuf->offs & (c->max_write_size - 1)) in ubifs_wbuf_sync_nolock() 563 wbuf->size = ALIGN(wbuf->offs, c->max_write_size) - wbuf->offs; in ubifs_wbuf_sync_nolock() 565 wbuf->size = c->max_write_size; in ubifs_wbuf_sync_nolock() 601 if (c->leb_size - wbuf->offs < c->max_write_size) in ubifs_wbuf_seek_nolock() 603 else if (wbuf->offs & (c->max_write_size - 1)) in ubifs_wbuf_seek_nolock() 604 wbuf->size = ALIGN(wbuf->offs, c->max_write_size) - wbuf->offs; in ubifs_wbuf_seek_nolock() [all …]
|
D | super.c | 523 c->max_write_size = c->di.max_write_size; in init_constants_early() 524 c->max_write_shift = fls(c->max_write_size) - 1; in init_constants_early() 547 if (c->max_write_size < c->min_io_size || in init_constants_early() 548 c->max_write_size % c->min_io_size || in init_constants_early() 549 !is_power_of_2(c->max_write_size)) { in init_constants_early() 551 c->max_write_size, c->min_io_size); in init_constants_early() 563 if (c->max_write_size < c->min_io_size) { in init_constants_early() 564 c->max_write_size = c->min_io_size; in init_constants_early() 1446 c->max_write_size); in mount_ubifs()
|
D | recovery.c | 422 empty_offs = ALIGN(offs + 1, c->max_write_size); in is_last_write() 476 skip = ALIGN(offs + UBIFS_CH_SZ, c->max_write_size) - offs; in no_more_nodes() 488 skip = ALIGN(offs + dlen, c->max_write_size) - offs; in no_more_nodes() 925 int len = c->max_write_size, err; in recover_head()
|
D | ubifs.h | 1321 int max_write_size; member
|
D | debug.c | 2563 to = min(len, ALIGN(from + 1, c->max_write_size)); in corrupt_data()
|
/linux-4.19.296/drivers/s390/net/ |
D | ctcm_mpc.h | 27 void (*callback)(int port_num, int max_write_size)); 30 void (*callback)(int port_num, int rc, int max_write_size));
|
/linux-4.19.296/include/linux/mtd/ |
D | ubi.h | 194 int max_write_size; member
|