Skip to content

Commit

Permalink
Merge branch 'for-linus-37rc1' of git://git.kernel.org/pub/scm/linux/…
Browse files Browse the repository at this point in the history
…kernel/git/rw/uml

Pull UML changes from Richard Weinberger:
 "UML receives this time only cleanups.

  The most outstanding change is the 'include "foo.h"' do 'include
  <foo.h>' conversion done by Al Viro.

  It touches many files, that's why the diffstat is rather big."

* 'for-linus-37rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml:
  typo in UserModeLinux-HOWTO
  hppfs: fix the return value of get_inode()
  hostfs: drop vmtruncate
  um: get rid of pointless include "..." where include <...> will do
  um: move sysrq.h out of include/shared
  um/x86: merge 32 and 64 bit variants of ptrace.h
  um/x86: merge 32 and 64bit variants of checksum.h
  • Loading branch information
torvalds committed Oct 10, 2012
2 parents aac2b1f + 062d526 commit f59b51f
Show file tree
Hide file tree
Showing 155 changed files with 641 additions and 785 deletions.
2 changes: 1 addition & 1 deletion Documentation/virtual/uml/UserModeLinux-HOWTO.txt
Expand Up @@ -3591,7 +3591,7 @@


Looking at the source shows that the fault happened during a call to
copy_to_user to copy the data into the kernel:
copy_from_user to copy the data into the kernel:


107 count -= chars;
Expand Down
4 changes: 2 additions & 2 deletions arch/um/drivers/chan_kern.c
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions arch/um/drivers/chan_user.c
Expand Up @@ -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)
{
Expand Down
2 changes: 1 addition & 1 deletion arch/um/drivers/chan_user.h
Expand Up @@ -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);
Expand Down
6 changes: 3 additions & 3 deletions arch/um/drivers/cow_sys.h
@@ -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)
{
Expand Down
2 changes: 1 addition & 1 deletion arch/um/drivers/daemon.h
Expand Up @@ -6,7 +6,7 @@
#ifndef __DAEMON_H__
#define __DAEMON_H__

#include "net_user.h"
#include <net_user.h>

#define SWITCH_VERSION 3

Expand Down
4 changes: 2 additions & 2 deletions arch/um/drivers/daemon_kern.c
Expand Up @@ -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 {
Expand Down
6 changes: 3 additions & 3 deletions arch/um/drivers/daemon_user.c
Expand Up @@ -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 };

Expand Down
4 changes: 2 additions & 2 deletions arch/um/drivers/fd.c
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion arch/um/drivers/harddog_user.c
Expand Up @@ -6,7 +6,7 @@
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include "os.h"
#include <os.h>

struct dog_data {
int stdin;
Expand Down
18 changes: 9 additions & 9 deletions arch/um/drivers/hostaudio_kern.c
Expand Up @@ -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;
Expand Down
16 changes: 8 additions & 8 deletions arch/um/drivers/line.c
Expand Up @@ -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

Expand Down
12 changes: 6 additions & 6 deletions arch/um/drivers/line.h
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion arch/um/drivers/mconsole.h
Expand Up @@ -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)
Expand Down
10 changes: 5 additions & 5 deletions arch/um/drivers/mconsole_kern.c
Expand Up @@ -27,13 +27,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)
Expand Down
2 changes: 1 addition & 1 deletion arch/um/drivers/mconsole_kern.h
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion arch/um/drivers/mmapper_kern.c
Expand Up @@ -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;
Expand Down
10 changes: 5 additions & 5 deletions arch/um/drivers/net_kern.c
Expand Up @@ -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"

Expand Down
6 changes: 3 additions & 3 deletions arch/um/drivers/net_user.c
Expand Up @@ -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)
{
Expand Down
2 changes: 1 addition & 1 deletion arch/um/drivers/null.c
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions arch/um/drivers/pcap_kern.c
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions arch/um/drivers/pcap_user.c
Expand Up @@ -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))

Expand Down
2 changes: 1 addition & 1 deletion arch/um/drivers/pcap_user.h
Expand Up @@ -3,7 +3,7 @@
* Licensed under the GPL
*/

#include "net_user.h"
#include <net_user.h>

struct pcap_data {
char *host_if;
Expand Down
20 changes: 10 additions & 10 deletions arch/um/drivers/port_kern.c
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions arch/um/drivers/port_user.c
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions arch/um/drivers/pty.c
Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions arch/um/drivers/random.c
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion arch/um/drivers/slip_common.c
@@ -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)
{
Expand Down
2 changes: 1 addition & 1 deletion arch/um/drivers/slip_kern.c
Expand Up @@ -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 {
Expand Down
6 changes: 3 additions & 3 deletions arch/um/drivers/slip_user.c
Expand Up @@ -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)
{
Expand Down

0 comments on commit f59b51f

Please sign in to comment.