projects
/
platform
/
upstream
/
systemd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
812724c
)
copy: add brief comment to copy_bytes() explaining its return values
author
Lennart Poettering
<lennart@poettering.net>
Fri, 9 Mar 2018 21:44:47 +0000
(22:44 +0100)
committer
Lennart Poettering
<lennart@poettering.net>
Fri, 13 Apr 2018 09:32:46 +0000
(11:32 +0200)
src/basic/copy.c
patch
|
blob
|
history
diff --git
a/src/basic/copy.c
b/src/basic/copy.c
index
b64966c
..
de71132
100644
(file)
--- a/
src/basic/copy.c
+++ b/
src/basic/copy.c
@@
-65,6
+65,10
@@
int copy_bytes(int fdf, int fdt, uint64_t max_bytes, CopyFlags copy_flags) {
assert(fdf >= 0);
assert(fdt >= 0);
+ /* Tries to copy bytes from the file descriptor 'fdf' to 'fdt' in the smartest possible way. Copies a maximum
+ * of 'max_bytes', which may be specified as UINT64_MAX, in which no maximum is applied. Returns negative on
+ * error, zero if EOF is hit before the bytes limit is hit and positive otherwise. */
+
/* Try btrfs reflinks first. */
if ((copy_flags & COPY_REFLINK) &&
max_bytes == (uint64_t) -1 &&