Re: + s390-tty-prepare-for-put_char-to-return-success-fail.patchadded to -mm tree

From: Heiko Carstens
Date: Tue Apr 15 2008 - 03:21:29 EST


> * NOTE: include/linux/tty_driver.h specifies that a character should be
> * ignored if there is no room in the queue. This driver implements a different
> * semantic in that it will block when there is no more room left.
> + *
> + * FIXME: putchar can currently be called from BH and other non blocking
> + * handlers so this semantic isn't a good idea.
> */
> -static void
> +static int
> sclp_vt220_put_char(struct tty_struct *tty, unsigned char ch)
> {
> __sclp_vt220_write(&ch, 1, 0, 0, 1);
> + return 1;

Uh, oh... the comment above used to mean "block if in schedulable context or
busy wait otherwise". Figuring out which context we were in was done via
in_atomic(), which was broken on !SMP anyway, so that had to go.
So the last parameter for __sclp_vt220_write is now an indicator if scheduling
is allowed or not (1 means yes). Somebody told me that the put_char routine
will only be called from schedulable context, which now doesn't seem to be
true?!
For the console functions we pass indeed 0 to __sclp_vt220_write since printk
may be called within any context. Is that also true for the tty put_char
routine?
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/