Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 97485726 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

Merge v3.9-rc5 into char-misc-next



This picks up the fixes in 3.9-rc5 that we need here.

Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parents 5ed0505c 07961ac7
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -15,6 +15,13 @@ amemthresh - INTEGER
        enabled and the variable is automatically set to 2, otherwise
        the strategy is disabled and the variable is  set  to 1.

backup_only - BOOLEAN
	0 - disabled (default)
	not 0 - enabled

	If set, disable the director function while the server is
	in backup mode to avoid packet loops for DR/TUN methods.

conntrack - BOOLEAN
	0 - disabled (default)
	not 0 - enabled
+12 −11
Original line number Diff line number Diff line
@@ -3243,6 +3243,12 @@ F: Documentation/firmware_class/
F:	drivers/base/firmware*.c
F:	include/linux/firmware.h

FLASHSYSTEM DRIVER (IBM FlashSystem 70/80 PCI SSD Flash Card)
M:	Joshua Morris <josh.h.morris@us.ibm.com>
M:	Philip Kelleher <pjk1939@linux.vnet.ibm.com>
S:	Maintained
F:	drivers/block/rsxx/

FLOPPY DRIVER
M:	Jiri Kosina <jkosina@suse.cz>
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
@@ -5684,7 +5690,7 @@ S: Maintained
F:	arch/arm/*omap*/*clock*

OMAP POWER MANAGEMENT SUPPORT
M:	Kevin Hilman <khilman@ti.com>
M:	Kevin Hilman <khilman@deeprootsystems.com>
L:	linux-omap@vger.kernel.org
S:	Maintained
F:	arch/arm/*omap*/*pm*
@@ -5778,7 +5784,7 @@ F: arch/arm/*omap*/usb*

OMAP GPIO DRIVER
M:	Santosh Shilimkar <santosh.shilimkar@ti.com>
M:	Kevin Hilman <khilman@ti.com>
M:	Kevin Hilman <khilman@deeprootsystems.com>
L:	linux-omap@vger.kernel.org
S:	Maintained
F:	drivers/gpio/gpio-omap.c
@@ -6210,7 +6216,7 @@ F: include/linux/power_supply.h
F:	drivers/power/

PNP SUPPORT
M:	Adam Belay <abelay@mit.edu>
M:	Rafael J. Wysocki <rafael.j.wysocki@intel.com>
M:	Bjorn Helgaas <bhelgaas@google.com>
S:	Maintained
F:	drivers/pnp/
@@ -6552,12 +6558,6 @@ S: Maintained
F:	Documentation/blockdev/ramdisk.txt
F:	drivers/block/brd.c

RAMSAM DRIVER (IBM RamSan 70/80 PCI SSD Flash Card)
M:	Joshua Morris <josh.h.morris@us.ibm.com>
M:	Philip Kelleher <pjk1939@linux.vnet.ibm.com>
S:	Maintained
F:	drivers/block/rsxx/

RANDOM NUMBER DRIVER
M:	Theodore Ts'o" <tytso@mit.edu>
S:	Maintained
@@ -7174,7 +7174,7 @@ F: arch/arm/mach-s3c2410/bast-irq.c

TI DAVINCI MACHINE SUPPORT
M:	Sekhar Nori <nsekhar@ti.com>
M:	Kevin Hilman <khilman@ti.com>
M:	Kevin Hilman <khilman@deeprootsystems.com>
L:	davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
T:	git git://gitorious.org/linux-davinci/linux-davinci.git
Q:	http://patchwork.kernel.org/project/linux-davinci/list/
@@ -7707,9 +7707,10 @@ F: include/linux/swiotlb.h

SYNOPSYS ARC ARCHITECTURE
M:	Vineet Gupta <vgupta@synopsys.com>
L:	linux-snps-arc@vger.kernel.org
S:	Supported
F:	arch/arc/
F:	Documentation/devicetree/bindings/arc/
F:	drivers/tty/serial/arc-uart.c

SYSV FILESYSTEM
M:	Christoph Hellwig <hch@infradead.org>
+1 −1
Original line number Diff line number Diff line
VERSION = 3
PATCHLEVEL = 9
SUBLEVEL = 0
EXTRAVERSION = -rc4
EXTRAVERSION = -rc5
NAME = Unicycling Gorilla

# *DOCUMENTATION*
+1 −1
Original line number Diff line number Diff line
@@ -126,7 +126,7 @@ dma_map_sg(struct device *dev, struct scatterlist *sg,
	int i;

	for_each_sg(sg, s, nents, i)
		sg->dma_address = dma_map_page(dev, sg_page(s), s->offset,
		s->dma_address = dma_map_page(dev, sg_page(s), s->offset,
					       s->length, dir);

	return nents;
+0 −3
Original line number Diff line number Diff line
@@ -72,7 +72,4 @@ extern int elf_check_arch(const struct elf32_hdr *);
 */
#define ELF_PLATFORM	(NULL)

#define SET_PERSONALITY(ex) \
	set_personality(PER_LINUX | (current->personality & (~PER_MASK)))

#endif
Loading