Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
fe3cce2e
Commit
fe3cce2e
authored
Apr 09, 2015
by
Al Viro
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'iov_iter' into for-davem
parents
237dae88
bc917be8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
71 additions
and
0 deletions
+71
-0
include/linux/uio.h
include/linux/uio.h
+14
-0
lib/iov_iter.c
lib/iov_iter.c
+57
-0
No files found.
include/linux/uio.h
View file @
fe3cce2e
...
@@ -139,4 +139,18 @@ static inline void iov_iter_reexpand(struct iov_iter *i, size_t count)
...
@@ -139,4 +139,18 @@ static inline void iov_iter_reexpand(struct iov_iter *i, size_t count)
size_t
csum_and_copy_to_iter
(
void
*
addr
,
size_t
bytes
,
__wsum
*
csum
,
struct
iov_iter
*
i
);
size_t
csum_and_copy_to_iter
(
void
*
addr
,
size_t
bytes
,
__wsum
*
csum
,
struct
iov_iter
*
i
);
size_t
csum_and_copy_from_iter
(
void
*
addr
,
size_t
bytes
,
__wsum
*
csum
,
struct
iov_iter
*
i
);
size_t
csum_and_copy_from_iter
(
void
*
addr
,
size_t
bytes
,
__wsum
*
csum
,
struct
iov_iter
*
i
);
int
import_iovec
(
int
type
,
const
struct
iovec
__user
*
uvector
,
unsigned
nr_segs
,
unsigned
fast_segs
,
struct
iovec
**
iov
,
struct
iov_iter
*
i
);
#ifdef CONFIG_COMPAT
struct
compat_iovec
;
int
compat_import_iovec
(
int
type
,
const
struct
compat_iovec
__user
*
uvector
,
unsigned
nr_segs
,
unsigned
fast_segs
,
struct
iovec
**
iov
,
struct
iov_iter
*
i
);
#endif
int
import_single_range
(
int
type
,
void
__user
*
buf
,
size_t
len
,
struct
iovec
*
iov
,
struct
iov_iter
*
i
);
#endif
#endif
lib/iov_iter.c
View file @
fe3cce2e
...
@@ -766,3 +766,60 @@ const void *dup_iter(struct iov_iter *new, struct iov_iter *old, gfp_t flags)
...
@@ -766,3 +766,60 @@ const void *dup_iter(struct iov_iter *new, struct iov_iter *old, gfp_t flags)
flags
);
flags
);
}
}
EXPORT_SYMBOL
(
dup_iter
);
EXPORT_SYMBOL
(
dup_iter
);
int
import_iovec
(
int
type
,
const
struct
iovec
__user
*
uvector
,
unsigned
nr_segs
,
unsigned
fast_segs
,
struct
iovec
**
iov
,
struct
iov_iter
*
i
)
{
ssize_t
n
;
struct
iovec
*
p
;
n
=
rw_copy_check_uvector
(
type
,
uvector
,
nr_segs
,
fast_segs
,
*
iov
,
&
p
);
if
(
n
<
0
)
{
if
(
p
!=
*
iov
)
kfree
(
p
);
*
iov
=
NULL
;
return
n
;
}
iov_iter_init
(
i
,
type
,
p
,
nr_segs
,
n
);
*
iov
=
p
==
*
iov
?
NULL
:
p
;
return
0
;
}
EXPORT_SYMBOL
(
import_iovec
);
#ifdef CONFIG_COMPAT
#include <linux/compat.h>
int
compat_import_iovec
(
int
type
,
const
struct
compat_iovec
__user
*
uvector
,
unsigned
nr_segs
,
unsigned
fast_segs
,
struct
iovec
**
iov
,
struct
iov_iter
*
i
)
{
ssize_t
n
;
struct
iovec
*
p
;
n
=
compat_rw_copy_check_uvector
(
type
,
uvector
,
nr_segs
,
fast_segs
,
*
iov
,
&
p
);
if
(
n
<
0
)
{
if
(
p
!=
*
iov
)
kfree
(
p
);
*
iov
=
NULL
;
return
n
;
}
iov_iter_init
(
i
,
type
,
p
,
nr_segs
,
n
);
*
iov
=
p
==
*
iov
?
NULL
:
p
;
return
0
;
}
#endif
int
import_single_range
(
int
rw
,
void
__user
*
buf
,
size_t
len
,
struct
iovec
*
iov
,
struct
iov_iter
*
i
)
{
if
(
len
>
MAX_RW_COUNT
)
len
=
MAX_RW_COUNT
;
if
(
unlikely
(
!
access_ok
(
!
rw
,
buf
,
len
)))
return
-
EFAULT
;
iov
->
iov_base
=
buf
;
iov
->
iov_len
=
len
;
iov_iter_init
(
i
,
rw
,
iov
,
1
,
len
);
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment