We don't actually use this in um_request_irq(), so it can never be assigned. It's also not clear what that would be useful for, so just remove it. This results in quite a number of cleanups, all the way to removing the "SIGIO on close" startup check, since the data it assigns (pty_close_sigio) is not used anymore. While at it, also make this an enum so we get a minimum of type checking, and remove the IRQ_NONE hack in virtio since we now no longer have the name twice. Acked-By: Anton Ivanov <anton.ivanov@cambridgegreys.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com> Acked-By: Anton Ivanov <anton.ivanov@cambridgegreys.com> Signed-off-by: Richard Weinberger <richard@nod.at>
26 lines
553 B
C
26 lines
553 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
|
*/
|
|
|
|
#ifndef __IRQ_USER_H__
|
|
#define __IRQ_USER_H__
|
|
|
|
#include <sysdep/ptrace.h>
|
|
#include <stdbool.h>
|
|
|
|
enum um_irq_type {
|
|
IRQ_READ,
|
|
IRQ_WRITE,
|
|
NUM_IRQ_TYPES,
|
|
};
|
|
|
|
struct siginfo;
|
|
extern void sigio_handler(int sig, struct siginfo *unused_si, struct uml_pt_regs *regs);
|
|
extern void free_irq_by_fd(int fd);
|
|
extern void deactivate_fd(int fd, int irqnum);
|
|
extern int deactivate_all_fds(void);
|
|
extern int activate_ipi(int fd, int pid);
|
|
|
|
#endif
|