From: Jens Axboe Date: Tue, 12 Jun 2007 19:20:00 +0000 (+0200) Subject: splice: add void cookie to the actor data X-Git-Tag: v3.12-rc1~28751^2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=130610d6f681c5d970340897f5db000d04a7ef78;p=kernel%2Fkernel-generic.git splice: add void cookie to the actor data We need that for passing driver private info. Signed-off-by: Jens Axboe --- diff --git a/include/linux/pipe_fs_i.h b/include/linux/pipe_fs_i.h index 6e7bfc1..f277a9c 100644 --- a/include/linux/pipe_fs_i.h +++ b/include/linux/pipe_fs_i.h @@ -94,6 +94,7 @@ struct splice_desc { union { void __user *userptr; /* memory to write to */ struct file *file; /* file to read/write */ + void *data; /* cookie */ } u; loff_t pos; /* file position */ };