Searched refs:comprtype (Results 1 – 4 of 4) sorted by relevance
/fs/jffs2/ |
D | compr.c | 196 uint16_t comprtype, unsigned char *cdata_in, in jffs2_decompress() argument 204 if ((comprtype & 0xff) <= JFFS2_COMPR_ZLIB) in jffs2_decompress() 205 comprtype &= 0xff; in jffs2_decompress() 207 switch (comprtype & 0xff) { in jffs2_decompress() 219 if (comprtype == this->compr) { in jffs2_decompress() 235 printk(KERN_WARNING "JFFS2 compression type 0x%02x not available.\n", comprtype); in jffs2_decompress()
|
D | compr.h | 75 uint16_t comprtype, unsigned char *cdata_in,
|
D | write.c | 343 uint16_t comprtype = JFFS2_COMPR_NONE; in jffs2_write_inode_range() local 361 comprtype = jffs2_compress(c, f, buf, &comprbuf, &datalen, &cdatalen); in jffs2_write_inode_range() 374 ri->compr = comprtype & 0xff; in jffs2_write_inode_range() 375 ri->usercompr = (comprtype >> 8 ) & 0xff; in jffs2_write_inode_range()
|
D | gc.c | 1251 uint16_t comprtype = JFFS2_COMPR_NONE; in jffs2_garbage_collect_dnode() local 1266 comprtype = jffs2_compress(c, f, writebuf, &comprbuf, &datalen, &cdatalen); in jffs2_garbage_collect_dnode() 1285 ri.compr = comprtype & 0xff; in jffs2_garbage_collect_dnode() 1286 ri.usercompr = (comprtype >> 8) & 0xff; in jffs2_garbage_collect_dnode()
|