io_uring: rename "copy buffers" to "clone buffers"
authorJens Axboe <axboe@kernel.dk>
Sat, 14 Sep 2024 14:51:15 +0000 (08:51 -0600)
committerJens Axboe <axboe@kernel.dk>
Sat, 14 Sep 2024 14:51:15 +0000 (08:51 -0600)
A recent commit added support for copying registered buffers from one
ring to another. But that term is a bit confusing, as no copying of
buffer data is done here. What is being done is simply cloning the
buffer registrations from one ring to another.

Rename it while we still can, so that it's more descriptive. No
functional changes in this patch.

Fixes: 7cc2a6eadcd7 ("io_uring: add IORING_REGISTER_COPY_BUFFERS method")
Signed-off-by: Jens Axboe <axboe@kernel.dk>
include/uapi/linux/io_uring.h
io_uring/register.c
io_uring/rsrc.c
io_uring/rsrc.h

index 9dc5bb4..1fe79e7 100644 (file)
@@ -609,8 +609,8 @@ enum io_uring_register_op {
 
        IORING_REGISTER_CLOCK                   = 29,
 
-       /* copy registered buffers from source ring to current ring */
-       IORING_REGISTER_COPY_BUFFERS            = 30,
+       /* clone registered buffers from source ring to current ring */
+       IORING_REGISTER_CLONE_BUFFERS           = 30,
 
        /* this goes last */
        IORING_REGISTER_LAST,
@@ -701,7 +701,7 @@ enum {
        IORING_REGISTER_SRC_REGISTERED = 1,
 };
 
-struct io_uring_copy_buffers {
+struct io_uring_clone_buffers {
        __u32   src_fd;
        __u32   flags;
        __u32   pad[6];
index dab0f80..b8a48a6 100644 (file)
@@ -542,11 +542,11 @@ static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
                        break;
                ret = io_register_clock(ctx, arg);
                break;
-       case IORING_REGISTER_COPY_BUFFERS:
+       case IORING_REGISTER_CLONE_BUFFERS:
                ret = -EINVAL;
                if (!arg || nr_args != 1)
                        break;
-               ret = io_register_copy_buffers(ctx, arg);
+               ret = io_register_clone_buffers(ctx, arg);
                break;
        default:
                ret = -EINVAL;
index 40696a3..9264e55 100644 (file)
@@ -1139,7 +1139,7 @@ int io_import_fixed(int ddir, struct iov_iter *iter,
        return 0;
 }
 
-static int io_copy_buffers(struct io_ring_ctx *ctx, struct io_ring_ctx *src_ctx)
+static int io_clone_buffers(struct io_ring_ctx *ctx, struct io_ring_ctx *src_ctx)
 {
        struct io_mapped_ubuf **user_bufs;
        struct io_rsrc_data *data;
@@ -1203,9 +1203,9 @@ out_unlock:
  *
  * Since the memory is already accounted once, don't account it again.
  */
-int io_register_copy_buffers(struct io_ring_ctx *ctx, void __user *arg)
+int io_register_clone_buffers(struct io_ring_ctx *ctx, void __user *arg)
 {
-       struct io_uring_copy_buffers buf;
+       struct io_uring_clone_buffers buf;
        bool registered_src;
        struct file *file;
        int ret;
@@ -1223,7 +1223,7 @@ int io_register_copy_buffers(struct io_ring_ctx *ctx, void __user *arg)
        file = io_uring_register_get_file(buf.src_fd, registered_src);
        if (IS_ERR(file))
                return PTR_ERR(file);
-       ret = io_copy_buffers(ctx, file->private_data);
+       ret = io_clone_buffers(ctx, file->private_data);
        if (!registered_src)
                fput(file);
        return ret;
index 93546ab..eb4803e 100644 (file)
@@ -68,7 +68,7 @@ int io_import_fixed(int ddir, struct iov_iter *iter,
                           struct io_mapped_ubuf *imu,
                           u64 buf_addr, size_t len);
 
-int io_register_copy_buffers(struct io_ring_ctx *ctx, void __user *arg);
+int io_register_clone_buffers(struct io_ring_ctx *ctx, void __user *arg);
 void __io_sqe_buffers_unregister(struct io_ring_ctx *ctx);
 int io_sqe_buffers_unregister(struct io_ring_ctx *ctx);
 int io_sqe_buffers_register(struct io_ring_ctx *ctx, void __user *arg,