um: get rid of pointless include "..." where include <...> will do
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Richard Weinberger <richard@nod.at>
这个提交包含在:
@@ -7,8 +7,8 @@
|
||||
#include <linux/tty.h>
|
||||
#include <linux/tty_flip.h>
|
||||
#include "chan.h"
|
||||
#include "os.h"
|
||||
#include "irq_kern.h"
|
||||
#include <os.h>
|
||||
#include <irq_kern.h>
|
||||
|
||||
#ifdef CONFIG_NOCONFIG_CHAN
|
||||
static void *not_configged_init(char *str, int device,
|
||||
|
@@ -11,8 +11,8 @@
|
||||
#include <termios.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include "chan_user.h"
|
||||
#include "os.h"
|
||||
#include "um_malloc.h"
|
||||
#include <os.h>
|
||||
#include <um_malloc.h>
|
||||
|
||||
void generic_close(int fd, void *unused)
|
||||
{
|
||||
|
@@ -6,7 +6,7 @@
|
||||
#ifndef __CHAN_USER_H__
|
||||
#define __CHAN_USER_H__
|
||||
|
||||
#include "init.h"
|
||||
#include <init.h>
|
||||
|
||||
struct chan_opts {
|
||||
void (*const announce)(char *dev_name, int dev);
|
||||
|
@@ -1,9 +1,9 @@
|
||||
#ifndef __COW_SYS_H__
|
||||
#define __COW_SYS_H__
|
||||
|
||||
#include "kern_util.h"
|
||||
#include "os.h"
|
||||
#include "um_malloc.h"
|
||||
#include <kern_util.h>
|
||||
#include <os.h>
|
||||
#include <um_malloc.h>
|
||||
|
||||
static inline void *cow_malloc(int size)
|
||||
{
|
||||
|
@@ -6,7 +6,7 @@
|
||||
#ifndef __DAEMON_H__
|
||||
#define __DAEMON_H__
|
||||
|
||||
#include "net_user.h"
|
||||
#include <net_user.h>
|
||||
|
||||
#define SWITCH_VERSION 3
|
||||
|
||||
|
@@ -6,9 +6,9 @@
|
||||
* Licensed under the GPL.
|
||||
*/
|
||||
|
||||
#include "linux/init.h"
|
||||
#include <linux/init.h>
|
||||
#include <linux/netdevice.h>
|
||||
#include "net_kern.h"
|
||||
#include <net_kern.h>
|
||||
#include "daemon.h"
|
||||
|
||||
struct daemon_init {
|
||||
|
@@ -14,9 +14,9 @@
|
||||
#include <sys/time.h>
|
||||
#include <sys/un.h>
|
||||
#include "daemon.h"
|
||||
#include "net_user.h"
|
||||
#include "os.h"
|
||||
#include "um_malloc.h"
|
||||
#include <net_user.h>
|
||||
#include <os.h>
|
||||
#include <um_malloc.h>
|
||||
|
||||
enum request_type { REQ_NEW_CONTROL };
|
||||
|
||||
|
@@ -9,8 +9,8 @@
|
||||
#include <errno.h>
|
||||
#include <termios.h>
|
||||
#include "chan_user.h"
|
||||
#include "os.h"
|
||||
#include "um_malloc.h"
|
||||
#include <os.h>
|
||||
#include <um_malloc.h>
|
||||
|
||||
struct fd_chan {
|
||||
int fd;
|
||||
|
@@ -6,7 +6,7 @@
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <errno.h>
|
||||
#include "os.h"
|
||||
#include <os.h>
|
||||
|
||||
struct dog_data {
|
||||
int stdin;
|
||||
|
@@ -3,15 +3,15 @@
|
||||
* Licensed under the GPL
|
||||
*/
|
||||
|
||||
#include "linux/fs.h"
|
||||
#include "linux/module.h"
|
||||
#include "linux/slab.h"
|
||||
#include "linux/sound.h"
|
||||
#include "linux/soundcard.h"
|
||||
#include "linux/mutex.h"
|
||||
#include "asm/uaccess.h"
|
||||
#include "init.h"
|
||||
#include "os.h"
|
||||
#include <linux/fs.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/sound.h>
|
||||
#include <linux/soundcard.h>
|
||||
#include <linux/mutex.h>
|
||||
#include <asm/uaccess.h>
|
||||
#include <init.h>
|
||||
#include <os.h>
|
||||
|
||||
struct hostaudio_state {
|
||||
int fd;
|
||||
|
@@ -3,15 +3,15 @@
|
||||
* Licensed under the GPL
|
||||
*/
|
||||
|
||||
#include "linux/irqreturn.h"
|
||||
#include "linux/kd.h"
|
||||
#include "linux/sched.h"
|
||||
#include "linux/slab.h"
|
||||
#include <linux/irqreturn.h>
|
||||
#include <linux/kd.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/slab.h>
|
||||
#include "chan.h"
|
||||
#include "irq_kern.h"
|
||||
#include "irq_user.h"
|
||||
#include "kern_util.h"
|
||||
#include "os.h"
|
||||
#include <irq_kern.h>
|
||||
#include <irq_user.h>
|
||||
#include <kern_util.h>
|
||||
#include <os.h>
|
||||
|
||||
#define LINE_BUFSIZE 4096
|
||||
|
||||
|
@@ -6,12 +6,12 @@
|
||||
#ifndef __LINE_H__
|
||||
#define __LINE_H__
|
||||
|
||||
#include "linux/list.h"
|
||||
#include "linux/workqueue.h"
|
||||
#include "linux/tty.h"
|
||||
#include "linux/interrupt.h"
|
||||
#include "linux/spinlock.h"
|
||||
#include "linux/mutex.h"
|
||||
#include <linux/list.h>
|
||||
#include <linux/workqueue.h>
|
||||
#include <linux/tty.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/spinlock.h>
|
||||
#include <linux/mutex.h>
|
||||
#include "chan_user.h"
|
||||
#include "mconsole_kern.h"
|
||||
|
||||
|
@@ -12,7 +12,7 @@
|
||||
#define u32 uint32_t
|
||||
#endif
|
||||
|
||||
#include "sysdep/ptrace.h"
|
||||
#include <sysdep/ptrace.h>
|
||||
|
||||
#define MCONSOLE_MAGIC (0xcafebabe)
|
||||
#define MCONSOLE_MAX_DATA (512)
|
||||
|
@@ -24,13 +24,13 @@
|
||||
#include <asm/uaccess.h>
|
||||
#include <asm/switch_to.h>
|
||||
|
||||
#include "init.h"
|
||||
#include "irq_kern.h"
|
||||
#include "irq_user.h"
|
||||
#include "kern_util.h"
|
||||
#include <init.h>
|
||||
#include <irq_kern.h>
|
||||
#include <irq_user.h>
|
||||
#include <kern_util.h>
|
||||
#include "mconsole.h"
|
||||
#include "mconsole_kern.h"
|
||||
#include "os.h"
|
||||
#include <os.h>
|
||||
|
||||
static int do_unlink_socket(struct notifier_block *notifier,
|
||||
unsigned long what, void *data)
|
||||
|
@@ -6,7 +6,7 @@
|
||||
#ifndef __MCONSOLE_KERN_H__
|
||||
#define __MCONSOLE_KERN_H__
|
||||
|
||||
#include "linux/list.h"
|
||||
#include <linux/list.h>
|
||||
#include "mconsole.h"
|
||||
|
||||
struct mconsole_entry {
|
||||
|
@@ -18,7 +18,7 @@
|
||||
#include <linux/mm.h>
|
||||
|
||||
#include <asm/uaccess.h>
|
||||
#include "mem_user.h"
|
||||
#include <mem_user.h>
|
||||
|
||||
/* These are set in mmapper_init, which is called at boot time */
|
||||
static unsigned long mmapper_size;
|
||||
|
@@ -18,12 +18,12 @@
|
||||
#include <linux/skbuff.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/spinlock.h>
|
||||
#include "init.h"
|
||||
#include "irq_kern.h"
|
||||
#include "irq_user.h"
|
||||
#include <init.h>
|
||||
#include <irq_kern.h>
|
||||
#include <irq_user.h>
|
||||
#include "mconsole_kern.h"
|
||||
#include "net_kern.h"
|
||||
#include "net_user.h"
|
||||
#include <net_kern.h>
|
||||
#include <net_user.h>
|
||||
|
||||
#define DRIVER_NAME "uml-netdev"
|
||||
|
||||
|
@@ -11,9 +11,9 @@
|
||||
#include <string.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/wait.h>
|
||||
#include "net_user.h"
|
||||
#include "os.h"
|
||||
#include "um_malloc.h"
|
||||
#include <net_user.h>
|
||||
#include <os.h>
|
||||
#include <um_malloc.h>
|
||||
|
||||
int tap_open_common(void *dev, char *gate_addr)
|
||||
{
|
||||
|
@@ -7,7 +7,7 @@
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include "chan_user.h"
|
||||
#include "os.h"
|
||||
#include <os.h>
|
||||
|
||||
/* This address is used only as a unique identifier */
|
||||
static int null_chan;
|
||||
|
@@ -3,9 +3,9 @@
|
||||
* Licensed under the GPL.
|
||||
*/
|
||||
|
||||
#include "linux/init.h"
|
||||
#include <linux/init.h>
|
||||
#include <linux/netdevice.h>
|
||||
#include "net_kern.h"
|
||||
#include <net_kern.h>
|
||||
#include "pcap_user.h"
|
||||
|
||||
struct pcap_init {
|
||||
|
@@ -7,9 +7,9 @@
|
||||
#include <pcap.h>
|
||||
#include <string.h>
|
||||
#include <asm/types.h>
|
||||
#include "net_user.h"
|
||||
#include <net_user.h>
|
||||
#include "pcap_user.h"
|
||||
#include "um_malloc.h"
|
||||
#include <um_malloc.h>
|
||||
|
||||
#define PCAP_FD(p) (*(int *)(p))
|
||||
|
||||
|
@@ -3,7 +3,7 @@
|
||||
* Licensed under the GPL
|
||||
*/
|
||||
|
||||
#include "net_user.h"
|
||||
#include <net_user.h>
|
||||
|
||||
struct pcap_data {
|
||||
char *host_if;
|
||||
|
@@ -3,16 +3,16 @@
|
||||
* Licensed under the GPL
|
||||
*/
|
||||
|
||||
#include "linux/completion.h"
|
||||
#include "linux/interrupt.h"
|
||||
#include "linux/list.h"
|
||||
#include "linux/mutex.h"
|
||||
#include "linux/slab.h"
|
||||
#include "linux/workqueue.h"
|
||||
#include "asm/atomic.h"
|
||||
#include "init.h"
|
||||
#include "irq_kern.h"
|
||||
#include "os.h"
|
||||
#include <linux/completion.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/list.h>
|
||||
#include <linux/mutex.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/workqueue.h>
|
||||
#include <asm/atomic.h>
|
||||
#include <init.h>
|
||||
#include <irq_kern.h>
|
||||
#include <os.h>
|
||||
#include "port.h"
|
||||
|
||||
struct port_list {
|
||||
|
@@ -10,9 +10,9 @@
|
||||
#include <unistd.h>
|
||||
#include <netinet/in.h>
|
||||
#include "chan_user.h"
|
||||
#include "os.h"
|
||||
#include <os.h>
|
||||
#include "port.h"
|
||||
#include "um_malloc.h"
|
||||
#include <um_malloc.h>
|
||||
|
||||
struct port_chan {
|
||||
int raw;
|
||||
|
@@ -12,8 +12,8 @@
|
||||
#include <termios.h>
|
||||
#include <sys/stat.h>
|
||||
#include "chan_user.h"
|
||||
#include "os.h"
|
||||
#include "um_malloc.h"
|
||||
#include <os.h>
|
||||
#include <um_malloc.h>
|
||||
|
||||
struct pty_chan {
|
||||
void (*announce)(char *dev_name, int dev);
|
||||
|
@@ -13,8 +13,8 @@
|
||||
#include <linux/miscdevice.h>
|
||||
#include <linux/delay.h>
|
||||
#include <asm/uaccess.h>
|
||||
#include "irq_kern.h"
|
||||
#include "os.h"
|
||||
#include <irq_kern.h>
|
||||
#include <os.h>
|
||||
|
||||
/*
|
||||
* core module and version information
|
||||
|
@@ -1,6 +1,6 @@
|
||||
#include <string.h>
|
||||
#include "slip_common.h"
|
||||
#include "net_user.h"
|
||||
#include <net_user.h>
|
||||
|
||||
int slip_proto_read(int fd, void *buf, int len, struct slip_proto *slip)
|
||||
{
|
||||
|
@@ -6,7 +6,7 @@
|
||||
#include <linux/if_arp.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/netdevice.h>
|
||||
#include "net_kern.h"
|
||||
#include <net_kern.h>
|
||||
#include "slip.h"
|
||||
|
||||
struct slip_init {
|
||||
|
@@ -11,10 +11,10 @@
|
||||
#include <string.h>
|
||||
#include <sys/termios.h>
|
||||
#include <sys/wait.h>
|
||||
#include "net_user.h"
|
||||
#include "os.h"
|
||||
#include <net_user.h>
|
||||
#include <os.h>
|
||||
#include "slip.h"
|
||||
#include "um_malloc.h"
|
||||
#include <um_malloc.h>
|
||||
|
||||
static int slip_user_init(void *data, void *dev)
|
||||
{
|
||||
|
@@ -4,11 +4,11 @@
|
||||
*/
|
||||
|
||||
#include <linux/if_arp.h>
|
||||
#include "linux/init.h"
|
||||
#include <linux/init.h>
|
||||
#include <linux/netdevice.h>
|
||||
#include <linux/string.h>
|
||||
#include "net_kern.h"
|
||||
#include "net_user.h"
|
||||
#include <net_kern.h>
|
||||
#include <net_user.h>
|
||||
#include "slirp.h"
|
||||
|
||||
struct slirp_init {
|
||||
|
@@ -7,8 +7,8 @@
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
#include <sys/wait.h>
|
||||
#include "net_user.h"
|
||||
#include "os.h"
|
||||
#include <net_user.h>
|
||||
#include <os.h>
|
||||
#include "slirp.h"
|
||||
|
||||
static int slirp_user_init(void *data, void *dev)
|
||||
|
@@ -3,19 +3,19 @@
|
||||
* Licensed under the GPL
|
||||
*/
|
||||
|
||||
#include "linux/fs.h"
|
||||
#include "linux/tty.h"
|
||||
#include "linux/tty_driver.h"
|
||||
#include "linux/major.h"
|
||||
#include "linux/mm.h"
|
||||
#include "linux/init.h"
|
||||
#include "linux/console.h"
|
||||
#include "asm/termbits.h"
|
||||
#include "asm/irq.h"
|
||||
#include <linux/fs.h>
|
||||
#include <linux/tty.h>
|
||||
#include <linux/tty_driver.h>
|
||||
#include <linux/major.h>
|
||||
#include <linux/mm.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/console.h>
|
||||
#include <asm/termbits.h>
|
||||
#include <asm/irq.h>
|
||||
#include "ssl.h"
|
||||
#include "chan.h"
|
||||
#include "init.h"
|
||||
#include "irq_user.h"
|
||||
#include <init.h>
|
||||
#include <irq_user.h>
|
||||
#include "mconsole_kern.h"
|
||||
|
||||
static const int ssl_version = 1;
|
||||
|
@@ -3,27 +3,27 @@
|
||||
* Licensed under the GPL
|
||||
*/
|
||||
|
||||
#include "linux/posix_types.h"
|
||||
#include "linux/tty.h"
|
||||
#include "linux/tty_flip.h"
|
||||
#include "linux/types.h"
|
||||
#include "linux/major.h"
|
||||
#include "linux/kdev_t.h"
|
||||
#include "linux/console.h"
|
||||
#include "linux/string.h"
|
||||
#include "linux/sched.h"
|
||||
#include "linux/list.h"
|
||||
#include "linux/init.h"
|
||||
#include "linux/interrupt.h"
|
||||
#include "linux/slab.h"
|
||||
#include "linux/hardirq.h"
|
||||
#include "asm/current.h"
|
||||
#include "asm/irq.h"
|
||||
#include <linux/posix_types.h>
|
||||
#include <linux/tty.h>
|
||||
#include <linux/tty_flip.h>
|
||||
#include <linux/types.h>
|
||||
#include <linux/major.h>
|
||||
#include <linux/kdev_t.h>
|
||||
#include <linux/console.h>
|
||||
#include <linux/string.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/list.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/hardirq.h>
|
||||
#include <asm/current.h>
|
||||
#include <asm/irq.h>
|
||||
#include "stdio_console.h"
|
||||
#include "chan.h"
|
||||
#include "irq_user.h"
|
||||
#include <irq_user.h>
|
||||
#include "mconsole_kern.h"
|
||||
#include "init.h"
|
||||
#include <init.h>
|
||||
|
||||
#define MAX_TTYS (16)
|
||||
|
||||
|
@@ -7,8 +7,8 @@
|
||||
#include <fcntl.h>
|
||||
#include <termios.h>
|
||||
#include "chan_user.h"
|
||||
#include "os.h"
|
||||
#include "um_malloc.h"
|
||||
#include <os.h>
|
||||
#include <um_malloc.h>
|
||||
|
||||
struct tty_chan {
|
||||
char *dev;
|
||||
|
@@ -33,12 +33,12 @@
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/scatterlist.h>
|
||||
#include <asm/tlbflush.h>
|
||||
#include "kern_util.h"
|
||||
#include <kern_util.h>
|
||||
#include "mconsole_kern.h"
|
||||
#include "init.h"
|
||||
#include "irq_kern.h"
|
||||
#include <init.h>
|
||||
#include <irq_kern.h>
|
||||
#include "ubd.h"
|
||||
#include "os.h"
|
||||
#include <os.h>
|
||||
#include "cow.h"
|
||||
|
||||
enum ubd_req { UBD_READ, UBD_WRITE };
|
||||
|
@@ -19,7 +19,7 @@
|
||||
#include <byteswap.h>
|
||||
|
||||
#include "ubd.h"
|
||||
#include "os.h"
|
||||
#include <os.h>
|
||||
|
||||
void ignore_sigwinch_sig(void)
|
||||
{
|
||||
|
@@ -6,7 +6,7 @@
|
||||
#ifndef __DRIVERS_UMCAST_H
|
||||
#define __DRIVERS_UMCAST_H
|
||||
|
||||
#include "net_user.h"
|
||||
#include <net_user.h>
|
||||
|
||||
struct umcast_data {
|
||||
char *addr;
|
||||
|
@@ -11,10 +11,10 @@
|
||||
* Licensed under the GPL.
|
||||
*/
|
||||
|
||||
#include "linux/init.h"
|
||||
#include <linux/init.h>
|
||||
#include <linux/netdevice.h>
|
||||
#include "umcast.h"
|
||||
#include "net_kern.h"
|
||||
#include <net_kern.h>
|
||||
|
||||
struct umcast_init {
|
||||
char *addr;
|
||||
|
@@ -16,8 +16,8 @@
|
||||
#include <errno.h>
|
||||
#include <netinet/in.h>
|
||||
#include "umcast.h"
|
||||
#include "net_user.h"
|
||||
#include "um_malloc.h"
|
||||
#include <net_user.h>
|
||||
#include <um_malloc.h>
|
||||
|
||||
static struct sockaddr_in *new_addr(char *addr, unsigned short port)
|
||||
{
|
||||
|
@@ -7,10 +7,10 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "linux/init.h"
|
||||
#include <linux/init.h>
|
||||
#include <linux/netdevice.h>
|
||||
#include "net_kern.h"
|
||||
#include "net_user.h"
|
||||
#include <net_kern.h>
|
||||
#include <net_user.h>
|
||||
#include "vde.h"
|
||||
|
||||
static void vde_init(struct net_device *dev, void *data)
|
||||
|
@@ -6,8 +6,8 @@
|
||||
#include <stddef.h>
|
||||
#include <errno.h>
|
||||
#include <libvdeplug.h>
|
||||
#include "net_user.h"
|
||||
#include "um_malloc.h"
|
||||
#include <net_user.h>
|
||||
#include <um_malloc.h>
|
||||
#include "vde.h"
|
||||
|
||||
static int vde_user_init(void *data, void *dev)
|
||||
|
@@ -11,8 +11,8 @@
|
||||
#include <string.h>
|
||||
#include <termios.h>
|
||||
#include "chan_user.h"
|
||||
#include "os.h"
|
||||
#include "um_malloc.h"
|
||||
#include <os.h>
|
||||
#include <um_malloc.h>
|
||||
#include "xterm.h"
|
||||
|
||||
struct xterm_chan {
|
||||
|
@@ -7,8 +7,8 @@
|
||||
#include <linux/completion.h>
|
||||
#include <linux/irqreturn.h>
|
||||
#include <asm/irq.h>
|
||||
#include "irq_kern.h"
|
||||
#include "os.h"
|
||||
#include <irq_kern.h>
|
||||
#include <os.h>
|
||||
|
||||
struct xterm_wait {
|
||||
struct completion ready;
|
||||
|
在新工单中引用
屏蔽一个用户