Plan 9 from Bell Labs’s /usr/web/sources/contrib/yk/dist/9legacy/applied/usb-serial-ftdi-writelen.diff

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


Break up long writes to fit the 63-byte limit imposed by FTDI serial protocol.

Reference: /n/sources/patch/usbserial-ftdi-writelen
Date: Sun May 29 15:57:13 CES 2016
Signed-off-by: miller@hamnavoe.com

--- /sys/src/cmd/usb/serial/ftdi.c	Sun May 29 15:51:39 2016
+++ /sys/src/cmd/usb/serial/ftdi.c	Sun May 29 15:51:36 2016
@@ -622,22 +622,28 @@
 static int
 wait4write(Serialport *p, uchar *data, int count)
 {
-	int off, fd;
+	int off, fd, nleft, n;
 	uchar *b;
 	Serial *ser;
 
 	ser = p->s;
 
-	b = emallocz(count+ser->outhdrsz, 1);
-	off = ftsetouthdr(p, b, count);
-	memmove(b+off, data, count);
-
+	b = emallocz(ser->maxwtrans, 1);
 	fd = p->epout->dfd;
 	qunlock(ser);
-	count = write(fd, b, count+off);
+	for(nleft = count; nleft > 0; data += n, nleft -= n){
+		n = ser->maxwtrans - ser->outhdrsz;
+		if(n > nleft)
+			n = nleft;
+		off = ftsetouthdr(p, b, n);
+		memmove(b+off, data, n);
+		n = write(fd, b, n+off);
+		if(n <= 0)
+			break;
+	}
 	qlock(ser);
 	free(b);
-	return count;
+	return count - nleft;
 }
 
 typedef struct Packser Packser;

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.