um: Implement um_free_irq()
Instead of using chip->release() we can achieve the same using a simple wrapper for free_irq(). We have already um_request_irq(), so um_free_irq() is the perfect counterpart. Signed-off-by: Richard Weinberger <richard@nod.at> Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
2b76ebaa72
commit
fa7a0449e0
7 changed files with 18 additions and 10 deletions
|
@ -8,6 +8,7 @@
|
|||
#include <linux/tty_flip.h>
|
||||
#include "chan.h"
|
||||
#include "os.h"
|
||||
#include "irq_kern.h"
|
||||
|
||||
#ifdef CONFIG_NOCONFIG_CHAN
|
||||
static void *not_configged_init(char *str, int device,
|
||||
|
@ -213,9 +214,9 @@ void free_irqs(void)
|
|||
chan = list_entry(ele, struct chan, free_list);
|
||||
|
||||
if (chan->input && chan->enabled)
|
||||
free_irq(chan->line->driver->read_irq, chan);
|
||||
um_free_irq(chan->line->driver->read_irq, chan);
|
||||
if (chan->output && chan->enabled)
|
||||
free_irq(chan->line->driver->write_irq, chan);
|
||||
um_free_irq(chan->line->driver->write_irq, chan);
|
||||
chan->enabled = 0;
|
||||
}
|
||||
}
|
||||
|
@ -234,9 +235,9 @@ static void close_one_chan(struct chan *chan, int delay_free_irq)
|
|||
}
|
||||
else {
|
||||
if (chan->input && chan->enabled)
|
||||
free_irq(chan->line->driver->read_irq, chan);
|
||||
um_free_irq(chan->line->driver->read_irq, chan);
|
||||
if (chan->output && chan->enabled)
|
||||
free_irq(chan->line->driver->write_irq, chan);
|
||||
um_free_irq(chan->line->driver->write_irq, chan);
|
||||
chan->enabled = 0;
|
||||
}
|
||||
if (chan->ops->close != NULL)
|
||||
|
|
|
@ -699,7 +699,7 @@ struct winch {
|
|||
static void __free_winch(struct work_struct *work)
|
||||
{
|
||||
struct winch *winch = container_of(work, struct winch, work);
|
||||
free_irq(WINCH_IRQ, winch);
|
||||
um_free_irq(WINCH_IRQ, winch);
|
||||
|
||||
if (winch->pid != -1)
|
||||
os_kill_process(winch->pid, 1);
|
||||
|
|
|
@ -195,7 +195,7 @@ static int uml_net_close(struct net_device *dev)
|
|||
|
||||
netif_stop_queue(dev);
|
||||
|
||||
free_irq(dev->irq, dev);
|
||||
um_free_irq(dev->irq, dev);
|
||||
if (lp->close != NULL)
|
||||
(*lp->close)(lp->fd, &lp->user);
|
||||
lp->fd = -1;
|
||||
|
@ -835,7 +835,7 @@ static void close_devices(void)
|
|||
spin_lock(&opened_lock);
|
||||
list_for_each(ele, &opened) {
|
||||
lp = list_entry(ele, struct uml_net_private, list);
|
||||
free_irq(lp->dev->irq, lp->dev);
|
||||
um_free_irq(lp->dev->irq, lp->dev);
|
||||
if ((lp->close != NULL) && (lp->fd >= 0))
|
||||
(*lp->close)(lp->fd, &lp->user);
|
||||
if (lp->remove != NULL)
|
||||
|
|
|
@ -254,7 +254,7 @@ int port_wait(void *data)
|
|||
* connection. Then we loop here throwing out failed
|
||||
* connections until a good one is found.
|
||||
*/
|
||||
free_irq(TELNETD_IRQ, conn);
|
||||
um_free_irq(TELNETD_IRQ, conn);
|
||||
|
||||
if (conn->fd >= 0)
|
||||
break;
|
||||
|
|
|
@ -65,7 +65,7 @@ int xterm_fd(int socket, int *pid_out)
|
|||
* isn't set) this will hang... */
|
||||
wait_for_completion(&data->ready);
|
||||
|
||||
free_irq(XTERM_IRQ, data);
|
||||
um_free_irq(XTERM_IRQ, data);
|
||||
|
||||
ret = data->new_fd;
|
||||
*pid_out = data->pid;
|
||||
|
|
|
@ -13,6 +13,6 @@ extern int um_request_irq(unsigned int irq, int fd, int type,
|
|||
irq_handler_t handler,
|
||||
unsigned long irqflags, const char * devname,
|
||||
void *dev_id);
|
||||
|
||||
void um_free_irq(unsigned int irq, void *dev);
|
||||
#endif
|
||||
|
||||
|
|
|
@ -297,6 +297,13 @@ unsigned int do_IRQ(int irq, struct uml_pt_regs *regs)
|
|||
return 1;
|
||||
}
|
||||
|
||||
void um_free_irq(unsigned int irq, void *dev)
|
||||
{
|
||||
free_irq_by_irq_and_dev(irq, dev);
|
||||
free_irq(irq, dev);
|
||||
}
|
||||
EXPORT_SYMBOL(um_free_irq);
|
||||
|
||||
int um_request_irq(unsigned int irq, int fd, int type,
|
||||
irq_handler_t handler,
|
||||
unsigned long irqflags, const char * devname,
|
||||
|
|
Loading…
Reference in a new issue