Skip to content
This repository has been archived by the owner on Feb 26, 2020. It is now read-only.

Commit

Permalink
Restructure uio to accommodate bio_vec
Browse files Browse the repository at this point in the history
Starting from Linux 4.1, bio_vec will be allowed to pass into filesystem via
iter_read/iter_write, so we add a bio_vec field in uio_t to hold it, and use
UIO_BVEC in segflg to determine which "vec".

Also, to be consistent to newer kernel, we make iovec and bio_vec immutable,
and make uio act as an iterator with the new uio_consumed field.

Signed-off-by: Chunwei Chen <[email protected]>
  • Loading branch information
tuxoko committed Jul 30, 2015
1 parent 4699d76 commit af140fe
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion include/sys/uio.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/*****************************************************************************\
* Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
* Copyright (C) 2007 The Regents of the University of California.
* Copyright (c) 2015 by Chunwei Chen. All rights reserved.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* Written by Brian Behlendorf <[email protected]>.
* UCRL-CODE-235197
Expand Down Expand Up @@ -40,16 +41,21 @@ typedef enum uio_seg {
UIO_USERSPACE = 0,
UIO_SYSSPACE = 1,
UIO_USERISPACE= 2,
UIO_BVEC = 3,
} uio_seg_t;

typedef struct uio {
struct iovec *uio_iov;
union {
const struct iovec *uio_iov;
const struct bio_vec *uio_bvec;
};
int uio_iovcnt;
offset_t uio_loffset;
uio_seg_t uio_segflg;
uint16_t uio_fmode;
uint16_t uio_extflg;
offset_t uio_limit;
size_t uio_consumed;
ssize_t uio_resid;
} uio_t;

Expand Down

0 comments on commit af140fe

Please sign in to comment.