*
  * IORING_RECVSEND_FIXED_BUF   Use registered buffers, the index is stored in
  *                             the buf_index field.
+ *
+ * IORING_SEND_ZC_REPORT_USAGE
+ *                             If set, SEND[MSG]_ZC should report
+ *                             the zerocopy usage in cqe.res
+ *                             for the IORING_CQE_F_NOTIF cqe.
+ *                             0 is reported if zerocopy was actually possible.
+ *                             IORING_NOTIF_USAGE_ZC_COPIED if data was copied
+ *                             (at least partially).
  */
 #define IORING_RECVSEND_POLL_FIRST     (1U << 0)
 #define IORING_RECV_MULTISHOT          (1U << 1)
 #define IORING_RECVSEND_FIXED_BUF      (1U << 2)
+#define IORING_SEND_ZC_REPORT_USAGE    (1U << 3)
+
+/*
+ * cqe.res for IORING_CQE_F_NOTIF if
+ * IORING_SEND_ZC_REPORT_USAGE was requested
+ *
+ * It should be treated as a flag, all other
+ * bits of cqe.res should be treated as reserved!
+ */
+#define IORING_NOTIF_USAGE_ZC_COPIED    (1U << 31)
 
 /*
  * accept flags stored in sqe->ioprio
 
 
        zc->flags = READ_ONCE(sqe->ioprio);
        if (zc->flags & ~(IORING_RECVSEND_POLL_FIRST |
-                         IORING_RECVSEND_FIXED_BUF))
+                         IORING_RECVSEND_FIXED_BUF |
+                         IORING_SEND_ZC_REPORT_USAGE))
                return -EINVAL;
        notif = zc->notif = io_alloc_notif(ctx);
        if (!notif)
                req->imu = READ_ONCE(ctx->user_bufs[idx]);
                io_req_set_rsrc_node(notif, ctx, 0);
        }
+       if (zc->flags & IORING_SEND_ZC_REPORT_USAGE) {
+               io_notif_to_data(notif)->zc_report = true;
+       }
 
        if (req->opcode == IORING_OP_SEND_ZC) {
                if (READ_ONCE(sqe->__pad3[0]))
 
                __io_unaccount_mem(ctx->user, nd->account_pages);
                nd->account_pages = 0;
        }
+
+       if (nd->zc_report && (nd->zc_copied || !nd->zc_used))
+               notif->cqe.res |= IORING_NOTIF_USAGE_ZC_COPIED;
+
        io_req_task_complete(notif, locked);
 }
 
        struct io_notif_data *nd = container_of(uarg, struct io_notif_data, uarg);
        struct io_kiocb *notif = cmd_to_io_kiocb(nd);
 
+       if (nd->zc_report) {
+               if (success && !nd->zc_used && skb)
+                       WRITE_ONCE(nd->zc_used, true);
+               else if (!success && !nd->zc_copied)
+                       WRITE_ONCE(nd->zc_copied, true);
+       }
+
        if (refcount_dec_and_test(&uarg->refcnt)) {
                notif->io_task_work.func = __io_notif_complete_tw;
                io_req_task_work_add(notif);
        nd->account_pages = 0;
        nd->uarg.flags = SKBFL_ZEROCOPY_FRAG | SKBFL_DONT_ORPHAN;
        nd->uarg.callback = io_uring_tx_zerocopy_callback;
+       nd->zc_report = nd->zc_used = nd->zc_copied = false;
        refcount_set(&nd->uarg.refcnt, 1);
        return notif;
 }
 
        struct file             *file;
        struct ubuf_info        uarg;
        unsigned long           account_pages;
+       bool                    zc_report;
+       bool                    zc_used;
+       bool                    zc_copied;
 };
 
 void io_notif_flush(struct io_kiocb *notif);