logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

io_uring_prep_remove_buffers - prepare a remove buffers request

Description

       The io_uring_prep_remove_buffers(3) function prepares a request for removing previously supplied buffers.
       The submission queue entry sqe is setup to remove nr number of buffers from the buffer group ID indicated
       by bgid.

Errors

       These  are  the errors that are reported in the CQE res field. On success, res will contain the number of
       successfully removed buffers. On error, the following errors can occur.

       -ENOMEM
              The kernel was unable to allocate memory for the request.

       -EINVAL
              One of the fields set in the SQE was invalid.

       -ENOENT
              No buffers exist at the specified bgid buffer group ID.

Name

       io_uring_prep_remove_buffers - prepare a remove buffers request

Return Value

       None

See Also

io_uring_get_sqe(3), io_uring_submit(3), io_uring_register(2), io_uring_prep_provide_buffers(3)

liburing-2.2                                     March 13, 2022                  io_uring_prep_remove_buffers(3)

Synopsis

#include<liburing.h>voidio_uring_prep_remove_buffers(structio_uring_sqe*sqe,intnr,intbgid);

See Also