]> git.kernelconcepts.de Git - karo-tx-linux.git/log
karo-tx-linux.git
9 years agoAdd linux-next specific files for 20140502 next-20140502
Stephen Rothwell [Fri, 2 May 2014 07:01:07 +0000 (17:01 +1000)]
Add linux-next specific files for 20140502

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
9 years agoMerge branch 'akpm/master'
Stephen Rothwell [Fri, 2 May 2014 05:58:15 +0000 (15:58 +1000)]
Merge branch 'akpm/master'

9 years agomm: add strictlimit knob
Maxim Patlasov [Thu, 1 May 2014 22:05:45 +0000 (08:05 +1000)]
mm: add strictlimit knob

The "strictlimit" feature was introduced to enforce per-bdi dirty limits
for FUSE which sets bdi max_ratio to 1% by default:

http://article.gmane.org/gmane.linux.kernel.mm/105809

However the feature can be useful for other relatively slow or untrusted
BDIs like USB flash drives and DVD+RW.  The patch adds a knob to enable
the feature:

echo 1 > /sys/class/bdi/X:Y/strictlimit

Being enabled, the feature enforces bdi max_ratio limit even if global
(10%) dirty limit is not reached.  Of course, the effect is not visible
until /sys/class/bdi/X:Y/max_ratio is decreased to some reasonable value.

Signed-off-by: Maxim Patlasov <MPatlasov@parallels.com>
Cc: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Cc: Theodore Ts'o <tytso@mit.edu>
Cc: "Artem S. Tashkinov" <t.artem@lycos.com>
Cc: Mel Gorman <mel@csn.ul.ie>
Cc: Jan Kara <jack@suse.cz>
Cc: Wu Fengguang <fengguang.wu@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agoufs: sb mutex merge + mutex_destroy
Fabian Frederick [Thu, 1 May 2014 22:05:45 +0000 (08:05 +1000)]
ufs: sb mutex merge + mutex_destroy

788257d6101d9 ("ufs: remove the BKL") replaced BKL with mutex protection
using functions lock_ufs, unlock_ufs and struct mutex 'mutex' in sb_info.

b6963327e052 ("ufs: drop lock/unlock super") removed lock/unlock super and
added struct mutex 's_lock' in sb_info.

Those 2 mutexes are generally locked/unlocked at the same time except in
allocation (balloc, ialloc).

This patch merges the 2 mutexes and propagates first commit solution.  It
also adds mutex destruction before kfree during ufs_fill_super failure and
ufs_put_super.

[akpm@linux-foundation.org: avoid ifdefs, return -EROFS not -EINVAL]
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: Evgeniy Dushistov <dushistov@mail.ru>
Cc: "Chen, Jet" <jet.chen@intel.com>
Cc: Wu Fengguang <fengguang.wu@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agoarm: move arm_dma_limit to setup_dma_zone
Vladimir Murzin [Thu, 1 May 2014 22:05:45 +0000 (08:05 +1000)]
arm: move arm_dma_limit to setup_dma_zone

Since 4dcfa600 ("ARM: DMA-API: better handing of DMA masks for coherent
allocations") arm_dma_limit_pfn has almost substituted the arm_dma_limit.
The remaining user is dma_contiguous_reserve().  It is also referenced in
setup_dma_zone() to calculate arm_dma_limit_pfn.

Kill the global arm_dma_limit and equip setup_zone_dma with the local one.

Signed-off-by: Vladimir Murzin <murzin.v@gmail.com>
Reported-by: Vassili Karpov <av1474@comtv.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agodrivers/w1/w1_int.c: call put_device if device_register fails
Levente Kurusa [Thu, 1 May 2014 22:05:44 +0000 (08:05 +1000)]
drivers/w1/w1_int.c: call put_device if device_register fails

Currently, memsetting and kfreeing the device is bad behaviour.  The
device will have a reference count of 1 and hence can cause trouble
because it has kfree'd.  Proper way to handle a failed device_register is
to call put_device right after it fails.

Signed-off-by: Levente Kurusa <levex@linux.com>
Acked-by: Evgeniy Polyakov <zbr@ioremap.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agoblackfin/ptrace: call find_vma with the mmap_sem held
Davidlohr Bueso [Thu, 1 May 2014 22:05:44 +0000 (08:05 +1000)]
blackfin/ptrace: call find_vma with the mmap_sem held

Performing vma lookups without taking the mm->mmap_sem is asking for
trouble.  While doing the search, the vma in question can be modified or
even removed before returning to the caller.  Take the lock (shared) in
order to avoid races while iterating through the vmacache and/or rbtree.

Signed-off-by: Davidlohr Bueso <davidlohr@hp.com>
Cc: Steven Miao <realmz6@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agortc: s5m: consolidate two device type switch statements
Krzysztof Kozlowski [Thu, 1 May 2014 22:05:44 +0000 (08:05 +1000)]
rtc: s5m: consolidate two device type switch statements

In probe the configuration of driver for different chipsets was done in
two switch (pdata->device_type) statements.  Consolidate them into one
switch statement to increase code readability.

Additionally check the return value of regmap_irq_get_virq and exit probe
on error.

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Lee Jones <lee.jones@linaro.org>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Cc: Sangbeom Kim <sbkim73@samsung.com>
Cc: Samuel Ortiz <sameo@linux.intel.com>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agortc: s5m: add support for S2MPS14 RTC
Krzysztof Kozlowski [Thu, 1 May 2014 22:05:44 +0000 (08:05 +1000)]
rtc: s5m: add support for S2MPS14 RTC

Add support for S2MPS14 to the rtc-s5m driver. Differences in S2MPS14
(in comparison to S5M8767):

 - Layout of registers;
 - Lack of century support for time and alarms (7 registers used for
   storing time/alarm);
 - Two buffer control registers: WUDR and RUDR;
 - No register for enabling writing time;
 - RTC interrupts are reported in main PMIC I2C device;

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Lee Jones <lee.jones@linaro.org>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Cc: Sangbeom Kim <sbkim73@samsung.com>
Cc: Samuel Ortiz <sameo@linux.intel.com>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agortc: s5m: support different register layout
Krzysztof Kozlowski [Thu, 1 May 2014 22:05:43 +0000 (08:05 +1000)]
rtc: s5m: support different register layout

Prepare for adding support for S2MPS14 RTC device to the
rtc-s5m driver:

1. Add a map of registers used by the driver which differ between
   the chipsets (S5M876X and S2MPS14).

2. Move code of checking for alarm pending to separate function.

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Lee Jones <lee.jones@linaro.org>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Cc: Sangbeom Kim <sbkim73@samsung.com>
Cc: Samuel Ortiz <sameo@linux.intel.com>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agortc: s5m: use shorter time of register update
Krzysztof Kozlowski [Thu, 1 May 2014 22:05:43 +0000 (08:05 +1000)]
rtc: s5m: use shorter time of register update

Set the time needed for updating alarm and time registers to 0.45 ms.
The default is 7.32 ms which is too long and leads to warnings when
setting alarm or time:

s5m-rtc: waiting for UDR update, reached max number of retries

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Lee Jones <lee.jones@linaro.org>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Cc: Sangbeom Kim <sbkim73@samsung.com>
Cc: Samuel Ortiz <sameo@linux.intel.com>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agortc: s5m: remove undocumented time init on first boot
Krzysztof Kozlowski [Thu, 1 May 2014 22:05:43 +0000 (08:05 +1000)]
rtc: s5m: remove undocumented time init on first boot

Remove the code for initializing time if this is first boot.

The code for detecting first boot uses undocumented field RTC_TCON in
RTC_UDR_CON register.  According to S5M8767's datasheet this field is
reserved.  On S2MPS14 it is not documented at all.  On device first boot
the registers will be initialized with reset value (2000-01-01 00:00:00).

The code might work on S5M8763 but still this does not look like a task
for RTC driver.

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Lee Jones <lee.jones@linaro.org>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Cc: Sangbeom Kim <sbkim73@samsung.com>
Cc: Samuel Ortiz <sameo@linux.intel.com>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agomfd/rtc: sec/s5m: rename SEC* symbols to S5M
Krzysztof Kozlowski [Thu, 1 May 2014 22:05:43 +0000 (08:05 +1000)]
mfd/rtc: sec/s5m: rename SEC* symbols to S5M

Prepare for adding support for S2MPS14 RTC device to the rtc-s5m driver:

1. Rename SEC* symbols to S5M.
2. Add S5M prefix to some of defines which are different between S5M876X
   and S2MPS14.

This is only a rename-like patch, new code is not added.

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Acked-by: Lee Jones <lee.jones@linaro.org>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Cc: Sangbeom Kim <sbkim73@samsung.com>
Cc: Samuel Ortiz <sameo@linux.intel.com>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agomm: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:42 +0000 (08:05 +1000)]
mm: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agosysctl: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:42 +0000 (08:05 +1000)]
sysctl: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agoipc: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:42 +0000 (08:05 +1000)]
ipc: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agokey: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:42 +0000 (08:05 +1000)]
key: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agofs: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:42 +0000 (08:05 +1000)]
fs: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agontfs: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:41 +0000 (08:05 +1000)]
ntfs: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agoinotify: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:41 +0000 (08:05 +1000)]
inotify: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agonfs: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:41 +0000 (08:05 +1000)]
nfs: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agolockd: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:41 +0000 (08:05 +1000)]
lockd: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agofscache: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:40 +0000 (08:05 +1000)]
fscache: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agocoda: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:40 +0000 (08:05 +1000)]
coda: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agoscsi: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:40 +0000 (08:05 +1000)]
scsi: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agoparport: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:40 +0000 (08:05 +1000)]
parport: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agorandom: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:39 +0000 (08:05 +1000)]
random: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agocdrom: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:39 +0000 (08:05 +1000)]
cdrom: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agotile: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:39 +0000 (08:05 +1000)]
tile: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agoia64: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:39 +0000 (08:05 +1000)]
ia64: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agoarm: convert use of typedef ctl_table to struct ctl_table
Joe Perches [Thu, 1 May 2014 22:05:38 +0000 (08:05 +1000)]
arm: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agomm/page_io.c: work around gcc bug
Andrew Morton [Thu, 1 May 2014 22:05:38 +0000 (08:05 +1000)]
mm/page_io.c: work around gcc bug

gcc-4.4.4 (at least) screws up this initialization.

mm/page_io.c: In function '__swap_writepage':
mm/page_io.c:277: error: unknown field 'bvec' specified in initializer
mm/page_io.c:278: warning: excess elements in struct initializer
mm/page_io.c:278: warning: (near initialization for 'from')

Fixes f990bbc9bfa3cbd2d ("bio_vec-backed iov_iter").

Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agodrivers/gpio/gpio-zevio.c: fix build
Andrew Morton [Thu, 1 May 2014 22:05:38 +0000 (08:05 +1000)]
drivers/gpio/gpio-zevio.c: fix build

Unbreak i386 allmodconfig.

This is a hack - please fix properly ;)

Cc: Fabian Vogt <fabian@ritter-vogt.de>
Cc: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
9 years agoMerge branch 'akpm-current/current'
Stephen Rothwell [Fri, 2 May 2014 05:37:04 +0000 (15:37 +1000)]
Merge branch 'akpm-current/current'

Conflicts:
arch/x86/kernel/apic/hw_nmi.c

9 years agoMerge branch 'rd-docs/master'
Stephen Rothwell [Fri, 2 May 2014 05:13:48 +0000 (15:13 +1000)]
Merge branch 'rd-docs/master'

9 years agoMerge remote-tracking branch 'llvmlinux/for-next'
Stephen Rothwell [Fri, 2 May 2014 05:12:18 +0000 (15:12 +1000)]
Merge remote-tracking branch 'llvmlinux/for-next'

9 years agoMerge remote-tracking branch 'aio/master'
Stephen Rothwell [Fri, 2 May 2014 05:11:01 +0000 (15:11 +1000)]
Merge remote-tracking branch 'aio/master'

9 years agoMerge remote-tracking branch 'lzo-update/lzo-update'
Stephen Rothwell [Fri, 2 May 2014 05:09:31 +0000 (15:09 +1000)]
Merge remote-tracking branch 'lzo-update/lzo-update'

9 years agoMerge remote-tracking branch 'clk/clk-next'
Stephen Rothwell [Fri, 2 May 2014 05:08:16 +0000 (15:08 +1000)]
Merge remote-tracking branch 'clk/clk-next'

9 years agoMerge remote-tracking branch 'ktest/for-next'
Stephen Rothwell [Fri, 2 May 2014 05:07:22 +0000 (15:07 +1000)]
Merge remote-tracking branch 'ktest/for-next'

9 years agoMerge remote-tracking branch 'userns/for-next'
Stephen Rothwell [Fri, 2 May 2014 04:58:00 +0000 (14:58 +1000)]
Merge remote-tracking branch 'userns/for-next'

Conflicts:
fs/dcache.c
fs/namei.c
fs/namespace.c

9 years agoMerge remote-tracking branch 'pwm/for-next'
Stephen Rothwell [Fri, 2 May 2014 04:56:59 +0000 (14:56 +1000)]
Merge remote-tracking branch 'pwm/for-next'

9 years agoMerge remote-tracking branch 'gpio/for-next'
Stephen Rothwell [Fri, 2 May 2014 04:55:29 +0000 (14:55 +1000)]
Merge remote-tracking branch 'gpio/for-next'

9 years agoMerge remote-tracking branch 'pinctrl/for-next'
Stephen Rothwell [Fri, 2 May 2014 04:54:12 +0000 (14:54 +1000)]
Merge remote-tracking branch 'pinctrl/for-next'

9 years agoMerge remote-tracking branch 'scsi/for-next'
Stephen Rothwell [Fri, 2 May 2014 04:54:02 +0000 (14:54 +1000)]
Merge remote-tracking branch 'scsi/for-next'

9 years agoMerge remote-tracking branch 'cgroup/for-next'
Stephen Rothwell [Fri, 2 May 2014 04:48:04 +0000 (14:48 +1000)]
Merge remote-tracking branch 'cgroup/for-next'

9 years agoMerge remote-tracking branch 'staging/staging-next'
Stephen Rothwell [Fri, 2 May 2014 04:46:17 +0000 (14:46 +1000)]
Merge remote-tracking branch 'staging/staging-next'

Conflicts:
drivers/iio/adc/Kconfig

9 years agoMerge remote-tracking branch 'usb-gadget/next'
Stephen Rothwell [Fri, 2 May 2014 04:45:22 +0000 (14:45 +1000)]
Merge remote-tracking branch 'usb-gadget/next'

Conflicts:
drivers/usb/phy/phy-mv-u3d-usb.c

9 years agoMerge remote-tracking branch 'usb/usb-next'
Stephen Rothwell [Fri, 2 May 2014 04:34:53 +0000 (14:34 +1000)]
Merge remote-tracking branch 'usb/usb-next'

9 years agoMerge remote-tracking branch 'tty/tty-next'
Stephen Rothwell [Fri, 2 May 2014 04:33:13 +0000 (14:33 +1000)]
Merge remote-tracking branch 'tty/tty-next'

9 years agoMerge remote-tracking branch 'driver-core/driver-core-next'
Stephen Rothwell [Fri, 2 May 2014 04:22:22 +0000 (14:22 +1000)]
Merge remote-tracking branch 'driver-core/driver-core-next'

9 years agoMerge remote-tracking branch 'leds/for-next'
Stephen Rothwell [Fri, 2 May 2014 04:21:29 +0000 (14:21 +1000)]
Merge remote-tracking branch 'leds/for-next'

9 years agoMerge remote-tracking branch 'regmap/for-next'
Stephen Rothwell [Fri, 2 May 2014 04:20:05 +0000 (14:20 +1000)]
Merge remote-tracking branch 'regmap/for-next'

9 years agoMerge remote-tracking branch 'drivers-x86/linux-next'
Stephen Rothwell [Fri, 2 May 2014 04:19:58 +0000 (14:19 +1000)]
Merge remote-tracking branch 'drivers-x86/linux-next'

9 years agoMerge remote-tracking branch 'workqueues/for-next'
Stephen Rothwell [Fri, 2 May 2014 04:18:40 +0000 (14:18 +1000)]
Merge remote-tracking branch 'workqueues/for-next'

9 years agoMerge remote-tracking branch 'percpu/for-next'
Stephen Rothwell [Fri, 2 May 2014 04:07:43 +0000 (14:07 +1000)]
Merge remote-tracking branch 'percpu/for-next'

9 years agoMerge remote-tracking branch 'xen-tip/linux-next'
Stephen Rothwell [Fri, 2 May 2014 04:06:49 +0000 (14:06 +1000)]
Merge remote-tracking branch 'xen-tip/linux-next'

9 years agoMerge remote-tracking branch 'kvm/linux-next'
Stephen Rothwell [Fri, 2 May 2014 04:05:39 +0000 (14:05 +1000)]
Merge remote-tracking branch 'kvm/linux-next'

9 years agoMerge remote-tracking branch 'rcu/rcu/next'
Stephen Rothwell [Fri, 2 May 2014 03:54:38 +0000 (13:54 +1000)]
Merge remote-tracking branch 'rcu/rcu/next'

9 years agoMerge remote-tracking branch 'ftrace/for-next'
Stephen Rothwell [Fri, 2 May 2014 03:52:49 +0000 (13:52 +1000)]
Merge remote-tracking branch 'ftrace/for-next'

9 years agoMerge remote-tracking branch 'edac-amd/for-next'
Stephen Rothwell [Fri, 2 May 2014 03:52:46 +0000 (13:52 +1000)]
Merge remote-tracking branch 'edac-amd/for-next'

9 years agoMerge remote-tracking branch 'tip/auto-latest'
Stephen Rothwell [Fri, 2 May 2014 03:41:36 +0000 (13:41 +1000)]
Merge remote-tracking branch 'tip/auto-latest'

9 years agoMerge remote-tracking branch 'spi/for-next'
Stephen Rothwell [Fri, 2 May 2014 03:40:25 +0000 (13:40 +1000)]
Merge remote-tracking branch 'spi/for-next'

9 years agoMerge remote-tracking branch 'dt-rh/for-next'
Stephen Rothwell [Fri, 2 May 2014 03:38:54 +0000 (13:38 +1000)]
Merge remote-tracking branch 'dt-rh/for-next'

9 years agoMerge remote-tracking branch 'audit/master'
Stephen Rothwell [Fri, 2 May 2014 03:37:10 +0000 (13:37 +1000)]
Merge remote-tracking branch 'audit/master'

Conflicts:
arch/mips/include/asm/syscall.h
arch/mips/kernel/ptrace.c
arch/x86/Kconfig
kernel/audit.c

9 years agoMerge remote-tracking branch 'iommu/next'
Stephen Rothwell [Fri, 2 May 2014 03:36:03 +0000 (13:36 +1000)]
Merge remote-tracking branch 'iommu/next'

9 years agoMerge remote-tracking branch 'watchdog/master'
Stephen Rothwell [Fri, 2 May 2014 03:35:11 +0000 (13:35 +1000)]
Merge remote-tracking branch 'watchdog/master'

9 years agoMerge remote-tracking branch 'selinux/next'
Stephen Rothwell [Fri, 2 May 2014 03:35:05 +0000 (13:35 +1000)]
Merge remote-tracking branch 'selinux/next'

9 years agoMerge remote-tracking branch 'security/next'
Stephen Rothwell [Fri, 2 May 2014 03:25:19 +0000 (13:25 +1000)]
Merge remote-tracking branch 'security/next'

9 years agoMerge remote-tracking branch 'regulator/for-next'
Stephen Rothwell [Fri, 2 May 2014 03:24:07 +0000 (13:24 +1000)]
Merge remote-tracking branch 'regulator/for-next'

Conflicts:
drivers/regulator/tps65090-regulator.c

9 years agoMerge remote-tracking branch 'mfd-lj/for-mfd-next'
Stephen Rothwell [Fri, 2 May 2014 02:25:35 +0000 (12:25 +1000)]
Merge remote-tracking branch 'mfd-lj/for-mfd-next'

9 years agoMerge remote-tracking branch 'kgdb/kgdb-next'
Stephen Rothwell [Fri, 2 May 2014 02:25:15 +0000 (12:25 +1000)]
Merge remote-tracking branch 'kgdb/kgdb-next'

9 years agoMerge remote-tracking branch 'mmc/mmc-next'
Stephen Rothwell [Fri, 2 May 2014 02:24:01 +0000 (12:24 +1000)]
Merge remote-tracking branch 'mmc/mmc-next'

9 years agoMerge remote-tracking branch 'device-mapper/for-next'
Stephen Rothwell [Fri, 2 May 2014 02:22:57 +0000 (12:22 +1000)]
Merge remote-tracking branch 'device-mapper/for-next'

9 years agoMerge remote-tracking branch 'block/for-next'
Stephen Rothwell [Fri, 2 May 2014 02:20:06 +0000 (12:20 +1000)]
Merge remote-tracking branch 'block/for-next'

9 years agoMerge remote-tracking branch 'input/next'
Stephen Rothwell [Fri, 2 May 2014 02:19:06 +0000 (12:19 +1000)]
Merge remote-tracking branch 'input/next'

9 years agoMerge remote-tracking branch 'virtio/virtio-next'
Stephen Rothwell [Fri, 2 May 2014 02:18:02 +0000 (12:18 +1000)]
Merge remote-tracking branch 'virtio/virtio-next'

9 years agoMerge remote-tracking branch 'modules/modules-next'
Stephen Rothwell [Fri, 2 May 2014 02:09:49 +0000 (12:09 +1000)]
Merge remote-tracking branch 'modules/modules-next'

9 years agoMerge remote-tracking branch 'sound-asoc/for-next'
Stephen Rothwell [Fri, 2 May 2014 02:08:45 +0000 (12:08 +1000)]
Merge remote-tracking branch 'sound-asoc/for-next'

9 years agoMerge remote-tracking branch 'sound/for-next'
Stephen Rothwell [Fri, 2 May 2014 02:07:41 +0000 (12:07 +1000)]
Merge remote-tracking branch 'sound/for-next'

9 years agoMerge remote-tracking branch 'drm-tegra/drm/tegra/for-next'
Stephen Rothwell [Fri, 2 May 2014 02:06:45 +0000 (12:06 +1000)]
Merge remote-tracking branch 'drm-tegra/drm/tegra/for-next'

9 years agoMerge remote-tracking branch 'drm-intel/for-linux-next'
Stephen Rothwell [Fri, 2 May 2014 02:05:22 +0000 (12:05 +1000)]
Merge remote-tracking branch 'drm-intel/for-linux-next'

9 years agoMerge remote-tracking branch 'drm-panel/drm/panel/for-next'
Stephen Rothwell [Fri, 2 May 2014 02:05:18 +0000 (12:05 +1000)]
Merge remote-tracking branch 'drm-panel/drm/panel/for-next'

9 years agoMerge remote-tracking branch 'drm/drm-next'
Stephen Rothwell [Fri, 2 May 2014 02:03:45 +0000 (12:03 +1000)]
Merge remote-tracking branch 'drm/drm-next'

9 years agoMerge remote-tracking branch 'crypto/master'
Stephen Rothwell [Fri, 2 May 2014 02:02:46 +0000 (12:02 +1000)]
Merge remote-tracking branch 'crypto/master'

Conflicts:
drivers/char/hw_random/Kconfig
drivers/crypto/bfin_crc.h

9 years agoMerge remote-tracking branch 'l2-mtd/master'
Stephen Rothwell [Fri, 2 May 2014 01:47:38 +0000 (11:47 +1000)]
Merge remote-tracking branch 'l2-mtd/master'

9 years agoMerge remote-tracking branch 'mtd/master'
Stephen Rothwell [Fri, 2 May 2014 01:46:46 +0000 (11:46 +1000)]
Merge remote-tracking branch 'mtd/master'

9 years agoMerge remote-tracking branch 'infiniband/for-next'
Stephen Rothwell [Fri, 2 May 2014 01:45:53 +0000 (11:45 +1000)]
Merge remote-tracking branch 'infiniband/for-next'

9 years agoMerge remote-tracking branch 'wireless-next/master'
Stephen Rothwell [Fri, 2 May 2014 01:43:54 +0000 (11:43 +1000)]
Merge remote-tracking branch 'wireless-next/master'

9 years agoMerge remote-tracking branch 'ipsec-next/master'
Stephen Rothwell [Fri, 2 May 2014 01:42:27 +0000 (11:42 +1000)]
Merge remote-tracking branch 'ipsec-next/master'

9 years agoMerge remote-tracking branch 'net-next/master'
Stephen Rothwell [Fri, 2 May 2014 01:31:59 +0000 (11:31 +1000)]
Merge remote-tracking branch 'net-next/master'

Conflicts:
drivers/net/ethernet/altera/altera_sgdma.c
net/netlink/af_netlink.c

9 years agoMerge remote-tracking branch 'dmaengine/next'
Stephen Rothwell [Fri, 2 May 2014 01:26:31 +0000 (11:26 +1000)]
Merge remote-tracking branch 'dmaengine/next'

9 years agoMerge remote-tracking branch 'slave-dma/next'
Stephen Rothwell [Fri, 2 May 2014 01:25:21 +0000 (11:25 +1000)]
Merge remote-tracking branch 'slave-dma/next'

9 years agoMerge remote-tracking branch 'pm/linux-next'
Stephen Rothwell [Fri, 2 May 2014 01:23:22 +0000 (11:23 +1000)]
Merge remote-tracking branch 'pm/linux-next'

Conflicts:
arch/mips/loongson/lemote-2f/clock.c

9 years agoMerge remote-tracking branch 'libata/for-next'
Stephen Rothwell [Fri, 2 May 2014 01:22:27 +0000 (11:22 +1000)]
Merge remote-tracking branch 'libata/for-next'

9 years agoMerge remote-tracking branch 'kbuild/for-next'
Stephen Rothwell [Fri, 2 May 2014 01:21:09 +0000 (11:21 +1000)]
Merge remote-tracking branch 'kbuild/for-next'

9 years agoMerge remote-tracking branch 'v4l-dvb/master'
Stephen Rothwell [Fri, 2 May 2014 01:20:16 +0000 (11:20 +1000)]
Merge remote-tracking branch 'v4l-dvb/master'

9 years agoMerge remote-tracking branch 'hwmon-staging/hwmon-next'
Stephen Rothwell [Fri, 2 May 2014 01:19:24 +0000 (11:19 +1000)]
Merge remote-tracking branch 'hwmon-staging/hwmon-next'

9 years agoMerge remote-tracking branch 'hid/for-next'
Stephen Rothwell [Fri, 2 May 2014 01:17:28 +0000 (11:17 +1000)]
Merge remote-tracking branch 'hid/for-next'

9 years agoMerge remote-tracking branch 'pci/next'
Stephen Rothwell [Fri, 2 May 2014 01:13:30 +0000 (11:13 +1000)]
Merge remote-tracking branch 'pci/next'