usr/src/uts/common/io/strsun.c
changeset 898 64b2a371a6bd
parent 741 40027a3621ac
child 8778 b4169d2ab299
--- a/usr/src/uts/common/io/strsun.c	Sat Nov 12 07:57:48 2005 -0800
+++ b/usr/src/uts/common/io/strsun.c	Sat Nov 12 18:58:05 2005 -0800
@@ -253,6 +253,7 @@
 {
 	mblk_t	*head = NULL, **tail = &head;
 	size_t	offset = stp->sd_wroff;
+	size_t tail_len = stp->sd_tail;
 
 	if (iosize == INFPSZ || iosize > uiop->uio_resid)
 		iosize = uiop->uio_resid;
@@ -279,7 +280,8 @@
 
 		blocksize = MIN(iosize, maxblk);
 		ASSERT(blocksize >= 0);
-		if ((mp = allocb_cred(offset + blocksize, CRED())) == NULL) {
+		if ((mp = allocb_cred(offset + blocksize + tail_len,
+		    CRED())) == NULL) {
 			*errorp = ENOMEM;
 			return (head);
 		}