Searched refs:cbuf (Results 1 – 5 of 5) sorted by relevance
/fs/btrfs/ |
D | lzo.c | 60 void *cbuf; /* where compressed data goes */ member 91 kvfree(workspace->cbuf); in lzo_free_workspace() 106 workspace->cbuf = kvmalloc(lzo1x_worst_compress(PAGE_SIZE), GFP_KERNEL); in lzo_alloc_workspace() 107 if (!workspace->mem || !workspace->buf || !workspace->cbuf) in lzo_alloc_workspace() 188 ret = lzo1x_1_compress(data_in, in_len, workspace->cbuf, in lzo_compress_pages() 207 buf = workspace->cbuf; in lzo_compress_pages() 384 buf = workspace->cbuf; in lzo_decompress_bio()
|
/fs/ubifs/ |
D | tnc_commit.c | 863 idx = c->cbuf + used; in write_index() 988 ubifs_pad(c, c->cbuf + wlen, blen - wlen); in write_index() 992 err = ubifs_leb_write(c, lnum, c->cbuf, buf_offs, blen); in write_index() 1008 memmove(c->cbuf, c->cbuf + blen, used); in write_index()
|
D | super.c | 1318 c->cbuf = kmalloc(sz, GFP_NOFS); in mount_ubifs() 1319 if (!c->cbuf) { in mount_ubifs() 1595 kfree(c->cbuf); in mount_ubifs() 1636 kfree(c->cbuf); in ubifs_umount()
|
D | ubifs.h | 1304 void *cbuf; member
|
/fs/dlm/ |
D | lowcomms.c | 67 struct cbuf { struct 73 static void cbuf_add(struct cbuf *cb, int n) in cbuf_add() argument 78 static int cbuf_data(struct cbuf *cb) in cbuf_data() 83 static void cbuf_init(struct cbuf *cb, int size) in cbuf_init() 89 static void cbuf_eat(struct cbuf *cb, int n) in cbuf_eat() 96 static bool cbuf_empty(struct cbuf *cb) in cbuf_empty() 118 struct cbuf cb;
|