From mboxrd@z Thu Jan 1 00:00:00 1970 From: erik quanstrom Date: Tue, 20 Oct 2009 08:04:50 -0400 To: 9fans@9fans.net Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: [9fans] jpg image too big Topicbox-Message-UUID: 8c3093e0-ead5-11e9-9d60-3106f5b1d025 the problem is indeed drawterm related, but it's not dt's fault. the problem is that devdraw/loadimage.c needs to load at least 1 scan line at a time. unfortunately, iounit for drawterm ends up being 8k, so display->bufsize=8k. the problem is that each scan line is over 9k in my case. i haven't looked yet to see if the kernel can deal with partial lines, or what could be done about the too-small iounit. but it would seem to me that something has to give. - erik