Эх сурвалжийг харах

Revert "relay: fix splice problem"

This reverts commit c3270e577c18b3d0e984c3371493205a4807db9d.
Jens Axboe 17 жил өмнө
parent
commit
75065ff619
2 өөрчлөгдсөн 2 нэмэгдсэн , 2 устгасан
  1. 1 1
      fs/splice.c
  2. 1 1
      kernel/relay.c

+ 1 - 1
fs/splice.c

@@ -1072,7 +1072,7 @@ long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
 
 	ret = splice_direct_to_actor(in, &sd, direct_splice_actor);
 	if (ret > 0)
-		*ppos = sd.pos;
+		*ppos += ret;
 
 	return ret;
 }

+ 1 - 1
kernel/relay.c

@@ -1191,7 +1191,7 @@ static ssize_t relay_file_splice_read(struct file *in,
 	ret = 0;
 	spliced = 0;
 
-	while (len && !spliced) {
+	while (len) {
 		ret = subbuf_splice_actor(in, ppos, pipe, len, flags, &nonpad_ret);
 		if (ret < 0)
 			break;