linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* TTY loosing bytes ?
@ 2009-10-06  9:48 Felipe Balbi
  2009-10-06 11:45 ` Felipe Balbi
  0 siblings, 1 reply; 9+ messages in thread
From: Felipe Balbi @ 2009-10-06  9:48 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: alan, dbrownell

Hi all,

I'm facing a weird issue with TTY when using u_serial gadget.

The problem seems to be related to ldisc's buffer getting full. Imagine
a situation where you have 510 bytes available on N_TTY's buffer and you
try to flush 512 bytes then the code path would look like:

--> flush_to_ldisc();
	--> n_tty_receive_buf(512 bytes);
		--> i = 510;
		--> memcpy(i);

		--> i = 0;
		--> memcpy(i);
	<-- wake_up_interruptible();

What happens is that we loose those 2 extra bytes. I tried digging this
problem and try to find a fix for it but it's been really complicated
for me.

Hope you guys can help. Actually, I've been reproducing the problem on
2.6.28 but looking at the code current mainline should have the same
problem. I also cherry-picked the relevant patches to my 2.6.28 tree
(hope I got all of them) and it still failed.

Sorry I'm reporting such a problem with such an old kernel but upgrading
the kernel right now is just impossible.

If you guys could give any pointers I would be really glad.

-- 
balbi

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2009-10-06 13:59 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-06  9:48 TTY loosing bytes ? Felipe Balbi
2009-10-06 11:45 ` Felipe Balbi
2009-10-06 12:12   ` Alan Cox
2009-10-06 13:01     ` Felipe Balbi
2009-10-06 13:11       ` Alan Cox
2009-10-06 13:27         ` Felipe Balbi
2009-10-06 13:40           ` Alan Cox
2009-10-06 13:42             ` Felipe Balbi
2009-10-06 13:55               ` Felipe Balbi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).