Searched refs:cbuf (Results 1 – 5 of 5) sorted by relevance
/fs/btrfs/ |
D | lzo.c | 35 void *cbuf; /* where decompressed data goes */ member 44 vfree(workspace->cbuf); in lzo_free_workspace() 59 workspace->cbuf = vmalloc(lzo1x_worst_compress(PAGE_CACHE_SIZE)); in lzo_alloc_workspace() 60 if (!workspace->mem || !workspace->buf || !workspace->cbuf) in lzo_alloc_workspace() 141 ret = lzo1x_1_compress(data_in, in_len, workspace->cbuf, in lzo_compress_pages() 160 buf = workspace->cbuf; in lzo_compress_pages() 315 buf = workspace->cbuf; in lzo_decompress_biovec()
|
/fs/ubifs/ |
D | tnc_commit.c | 844 idx = c->cbuf + used; in write_index() 949 ubifs_pad(c, c->cbuf + wlen, blen - wlen); in write_index() 953 err = ubifs_leb_write(c, lnum, c->cbuf, buf_offs, blen); in write_index() 969 memmove(c->cbuf, c->cbuf + blen, used); in write_index()
|
D | super.c | 1249 c->cbuf = kmalloc(sz, GFP_NOFS); in mount_ubifs() 1250 if (!c->cbuf) { in mount_ubifs() 1497 kfree(c->cbuf); in mount_ubifs() 1535 kfree(c->cbuf); in ubifs_umount()
|
D | ubifs.h | 1272 void *cbuf; member
|
/fs/dlm/ |
D | lowcomms.c | 70 struct cbuf { struct 76 static void cbuf_add(struct cbuf *cb, int n) in cbuf_add() argument 81 static int cbuf_data(struct cbuf *cb) in cbuf_data() 86 static void cbuf_init(struct cbuf *cb, int size) in cbuf_init() 92 static void cbuf_eat(struct cbuf *cb, int n) in cbuf_eat() 99 static bool cbuf_empty(struct cbuf *cb) in cbuf_empty() 121 struct cbuf cb;
|