Commit 8e64d96a authored by Jeff Dike's avatar Jeff Dike Committed by Linus Torvalds

[PATCH] uml: remove os_isatty

os_isatty can be made to disappear by moving maybe_sigio_broken from kernel to
user code.  This also lets write_sigio_workaround become static.
Signed-off-by: default avatarJeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent bfaafd71
...@@ -318,7 +318,6 @@ extern void reboot_skas(void); ...@@ -318,7 +318,6 @@ extern void reboot_skas(void);
/* irq.c */ /* irq.c */
extern int os_waiting_for_events(struct irq_fd *active_fds); extern int os_waiting_for_events(struct irq_fd *active_fds);
extern int os_isatty(int fd);
extern int os_create_pollfd(int fd, int events, void *tmp_pfd, int size_tmpfds); extern int os_create_pollfd(int fd, int events, void *tmp_pfd, int size_tmpfds);
extern void os_free_irq_by_cb(int (*test)(struct irq_fd *, void *), void *arg, extern void os_free_irq_by_cb(int (*test)(struct irq_fd *, void *), void *arg,
struct irq_fd *active_fds, struct irq_fd ***last_irq_ptr2); struct irq_fd *active_fds, struct irq_fd ***last_irq_ptr2);
...@@ -330,9 +329,9 @@ extern void os_set_ioignore(void); ...@@ -330,9 +329,9 @@ extern void os_set_ioignore(void);
extern void init_irq_signals(int on_sigstack); extern void init_irq_signals(int on_sigstack);
/* sigio.c */ /* sigio.c */
extern void write_sigio_workaround(void);
extern int add_sigio_fd(int fd, int read); extern int add_sigio_fd(int fd, int read);
extern int ignore_sigio_fd(int fd); extern int ignore_sigio_fd(int fd);
extern void maybe_sigio_broken(int fd, int read);
/* skas/trap */ /* skas/trap */
extern void sig_handler_common_skas(int sig, void *sc_ptr); extern void sig_handler_common_skas(int sig, void *sc_ptr);
......
...@@ -110,19 +110,6 @@ void sigio_handler(int sig, union uml_pt_regs *regs) ...@@ -110,19 +110,6 @@ void sigio_handler(int sig, union uml_pt_regs *regs)
free_irqs(); free_irqs();
} }
static void maybe_sigio_broken(int fd, int type)
{
if (os_isatty(fd)) {
if ((type == IRQ_WRITE) && !pty_output_sigio) {
write_sigio_workaround();
add_sigio_fd(fd, 0);
} else if ((type == IRQ_READ) && !pty_close_sigio) {
write_sigio_workaround();
add_sigio_fd(fd, 1);
}
}
}
static DEFINE_SPINLOCK(irq_lock); static DEFINE_SPINLOCK(irq_lock);
int activate_fd(int irq, int fd, int type, void *dev_id) int activate_fd(int irq, int fd, int type, void *dev_id)
...@@ -221,7 +208,7 @@ int activate_fd(int irq, int fd, int type, void *dev_id) ...@@ -221,7 +208,7 @@ int activate_fd(int irq, int fd, int type, void *dev_id)
/* This calls activate_fd, so it has to be outside the critical /* This calls activate_fd, so it has to be outside the critical
* section. * section.
*/ */
maybe_sigio_broken(fd, type); maybe_sigio_broken(fd, (type == IRQ_READ));
return(0); return(0);
...@@ -318,7 +305,7 @@ void reactivate_fd(int fd, int irqnum) ...@@ -318,7 +305,7 @@ void reactivate_fd(int fd, int irqnum)
/* This calls activate_fd, so it has to be outside the critical /* This calls activate_fd, so it has to be outside the critical
* section. * section.
*/ */
maybe_sigio_broken(fd, irq->type); maybe_sigio_broken(fd, (irq->type == IRQ_READ));
} }
void deactivate_fd(int fd, int irqnum) void deactivate_fd(int fd, int irqnum)
......
...@@ -52,11 +52,6 @@ int os_waiting_for_events(struct irq_fd *active_fds) ...@@ -52,11 +52,6 @@ int os_waiting_for_events(struct irq_fd *active_fds)
return n; return n;
} }
int os_isatty(int fd)
{
return isatty(fd);
}
int os_create_pollfd(int fd, int events, void *tmp_pfd, int size_tmpfds) int os_create_pollfd(int fd, int events, void *tmp_pfd, int size_tmpfds)
{ {
if (pollfds_num == pollfds_size) { if (pollfds_num == pollfds_size) {
......
...@@ -233,7 +233,7 @@ static struct pollfd *setup_initial_poll(int fd) ...@@ -233,7 +233,7 @@ static struct pollfd *setup_initial_poll(int fd)
return p; return p;
} }
void write_sigio_workaround(void) static void write_sigio_workaround(void)
{ {
unsigned long stack; unsigned long stack;
struct pollfd *p; struct pollfd *p;
...@@ -314,6 +314,18 @@ out_close1: ...@@ -314,6 +314,18 @@ out_close1:
close(l_write_sigio_fds[1]); close(l_write_sigio_fds[1]);
} }
void maybe_sigio_broken(int fd, int read)
{
if(!isatty(fd))
return;
if((read || pty_output_sigio) && (!read || pty_close_sigio))
return;
write_sigio_workaround();
add_sigio_fd(fd, read);
}
void sigio_cleanup(void) void sigio_cleanup(void)
{ {
if(write_sigio_pid != -1){ if(write_sigio_pid != -1){
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment