Lines Matching refs:dsize
53 jffs2_dbg(1, "Node read from %08x: node_crc %08x, calculated CRC %08x. dsize %x, csize %x, offset %x, buf %p\n",
55 crc, je32_to_cpu(ri->dsize), je32_to_cpu(ri->csize),
63 /* There was a bug where we wrote hole nodes out with csize/dsize
65 if (ri->compr == JFFS2_COMPR_ZERO && !je32_to_cpu(ri->dsize) &&
67 ri->dsize = ri->csize;
71 D1(if(ofs + len > je32_to_cpu(ri->dsize)) {
73 len, ofs, je32_to_cpu(ri->dsize));
90 if (ri->compr == JFFS2_COMPR_NONE && len == je32_to_cpu(ri->dsize)) {
100 if (len < je32_to_cpu(ri->dsize)) {
101 decomprbuf = kmalloc(je32_to_cpu(ri->dsize), GFP_KERNEL);
134 je32_to_cpu(ri->dsize), decomprbuf);
135 ret = jffs2_decompress(c, f, ri->compr | (ri->usercompr << 8), readbuf, decomprbuf, je32_to_cpu(ri->csize), je32_to_cpu(ri->dsize));
142 if (len < je32_to_cpu(ri->dsize)) {