search for: argbuf

Displaying 6 results from an estimated 6 matches for "argbuf".

2015 Aug 07
3
compose_func_args: argbuf allocated 4 bytes compose_func_args: argbuf uses 3 bytes
...at pbx-routing:8] BackGround("SIP/SipAgenT-00000626", "/var/lib/asterisk/sounds/5003") in new stack [Aug 7 12:31:26] -- <SIP/SipAgenT-00000626> Playing '/var/lib/asterisk/sounds/5003.slin' [Aug 7 12:31:41] NOTICE[3886]: ast_expr2.y:763 compose_func_args: argbuf allocated 4 bytes; [Aug 7 12:31:41] NOTICE[3886]: ast_expr2.y:782 compose_func_args: argbuf uses 3 bytes; [Aug 7 12:31:41] -- Executing [911 at pbx-routing:1] Set("SIP/SipAgenT-00000626", "choice=91") in new stack I have reloaded the dialplan several times, but the fi...
2019 Sep 18
0
[PATCH v6] virtio-fs: add virtiofs filesystem
...fuse/fuse_i.h > @@ -353,6 +353,10 @@ struct fuse_req { > /** Used to wake up the task waiting for completion of request*/ > wait_queue_head_t waitq; > > +#if IS_ENABLED(CONFIG_VIRTIO_FS) > + /** virtio-fs's physically contiguous buffer for in and out args */ > + void *argbuf; > +#endif > }; > > struct fuse_iqueue; > @@ -383,6 +387,11 @@ struct fuse_iqueue_ops { > */ > void (*wake_pending_and_unlock)(struct fuse_iqueue *fiq) > __releases(fiq->lock); > + > + /** > + * Cleanup up when fuse_iqueue is destroyed Cleanup up -&...
2015 May 20
2
CHANNEL(aor) CHANNEL(contact) return nothing
...01f", "Channel=<PJSIP/jdg-0000001f>, type=<PJSIP>") in new stack -- Executing [*98 at public:3] NoOp("PJSIP/jdg-0000001f", "AOR=<>, contact=<>") in new stack [May 19 18:44:11] NOTICE[1476][C-0000001f]: ast_expr2.y:763 compose_func_args: argbuf allocated 12 bytes; [May 19 18:44:11] NOTICE[1476][C-0000001f]: ast_expr2.y:782 compose_func_args: argbuf uses 11 bytes; [May 19 18:44:11] NOTICE[1476][C-0000001f]: ast_expr2.y:763 compose_func_args: argbuf allocated 6 bytes; [May 19 18:44:11] NOTICE[1476][C-0000001f]: ast_expr2.y:782 compose_func_...
2019 Sep 03
4
[PATCH v4 15/16] virtio-fs: add virtiofs filesystem
...fuse/fuse_i.h > @@ -444,6 +444,11 @@ struct fuse_req { > > /** Request is stolen from fuse_file->reserved_req */ > struct file *stolen_file; > + > +#if IS_ENABLED(CONFIG_VIRTIO_FS) > + /** virtio-fs's physically contiguous buffer for in and out args */ > + void *argbuf; > +#endif > }; > > struct fuse_iqueue; > diff --git a/fs/fuse/virtio_fs.c b/fs/fuse/virtio_fs.c > new file mode 100644 > index 000000000000..197e79e536f9 > --- /dev/null > +++ b/fs/fuse/virtio_fs.c > @@ -0,0 +1,1072 @@ > +// SPDX-License-Identifier: GPL-2.0 &gt...
2019 Sep 03
4
[PATCH v4 15/16] virtio-fs: add virtiofs filesystem
...fuse/fuse_i.h > @@ -444,6 +444,11 @@ struct fuse_req { > > /** Request is stolen from fuse_file->reserved_req */ > struct file *stolen_file; > + > +#if IS_ENABLED(CONFIG_VIRTIO_FS) > + /** virtio-fs's physically contiguous buffer for in and out args */ > + void *argbuf; > +#endif > }; > > struct fuse_iqueue; > diff --git a/fs/fuse/virtio_fs.c b/fs/fuse/virtio_fs.c > new file mode 100644 > index 000000000000..197e79e536f9 > --- /dev/null > +++ b/fs/fuse/virtio_fs.c > @@ -0,0 +1,1072 @@ > +// SPDX-License-Identifier: GPL-2.0 &gt...
2019 Sep 05
0
[PATCH v4 15/16] virtio-fs: add virtiofs filesystem
...need at least 4 elements */ > > + struct scatterlist *stack_sgs[6]; > > + struct scatterlist stack_sg[ARRAY_SIZE(stack_sgs)]; > > + struct scatterlist **sgs = stack_sgs; > > + struct scatterlist *sg = stack_sg; > > + struct virtio_fs_vq *fsvq; > > + unsigned int argbuf_used = 0; > > + unsigned int out_sgs = 0; > > + unsigned int in_sgs = 0; > > + unsigned int total_sgs; > > + unsigned int i; > > + int ret; > > + bool notify; > > + > > + /* Does the sglist fit on the stack? */ > > + total_sgs = sg_count_fuse_re...