[PATCH] Staging: android: ion: Add blank line after variable declaration

2014-09-22 Thread Sorin Facaoaru
This patch fixes the checkpatch.pl warning: WARNING: Missing a blank line after declarations Signed-off-by: Sorin Facaoaru --- drivers/staging/android/ion/ion.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/staging/android/ion/ion.c b/drivers/staging/android/ion/ion.c index 2703

Re: [PATCH] Fix the issue that lowmemkiller fell into a cycle that try to kill a task

2014-09-22 Thread 朱辉
On 09/23/14 12:18, Greg KH wrote: > On Tue, Sep 23, 2014 at 10:57:09AM +0800, Hui Zhu wrote: >> The cause of this issue is when free memroy size is low and a lot of task is >> trying to shrink the memory, the task that is killed by lowmemkiller cannot >> get >> CPU to exit itself. >> >> Fix this

Re: [PATCH] Fix the issue that lowmemkiller fell into a cycle that try to kill a task

2014-09-22 Thread Greg KH
On Tue, Sep 23, 2014 at 10:57:09AM +0800, Hui Zhu wrote: > The cause of this issue is when free memroy size is low and a lot of task is > trying to shrink the memory, the task that is killed by lowmemkiller cannot > get > CPU to exit itself. > > Fix this issue with change the scheduling policy to

RE: [PATCH v2] Tools: hv: vssdaemon: ignore the EBUSY on multiple freezing the same partition

2014-09-22 Thread Dexuan Cui
> -Original Message- > From: linux-kernel-ow...@vger.kernel.org [mailto:linux-kernel- > ow...@vger.kernel.org] On Behalf Of Dexuan Cui > Sent: Tuesday, September 23, 2014 13:01 PM > To: gre...@linuxfoundation.org; linux-ker...@vger.kernel.org; driverdev- > de...@linuxdriverproject.org; o...

RE: [PATCH] Tools: hv: vssdaemon: ignore the EBUSY on multiple freezing the same partition

2014-09-22 Thread Dexuan Cui
> -Original Message- > From: linux-kernel-ow...@vger.kernel.org [mailto:linux-kernel- > ow...@vger.kernel.org] On Behalf Of Dexuan Cui > Sent: Tuesday, September 23, 2014 2:02 AM > To: gre...@linuxfoundation.org; linux-ker...@vger.kernel.org; driverdev- > de...@linuxdriverproject.org; o...@

[PATCH v2] Tools: hv: vssdaemon: ignore the EBUSY on multiple freezing the same partition

2014-09-22 Thread Dexuan Cui
v2: I added "errno = 0;" in the ioctl() Signed-off-by: Dexuan Cui Reviewed-by: K. Y. Srinivasan --- tools/hv/hv_vss_daemon.c | 28 1 file changed, 28 insertions(+) diff --git a/tools/hv/hv_vss_daemon.c b/tools/hv/hv_vss_daemon.c index 6a213b8..c1af658 100644 --- a/

[PATCH] Fix the issue that lowmemkiller fell into a cycle that try to kill a task

2014-09-22 Thread Hui Zhu
The cause of this issue is when free memroy size is low and a lot of task is trying to shrink the memory, the task that is killed by lowmemkiller cannot get CPU to exit itself. Fix this issue with change the scheduling policy to SCHED_FIFO if a task's flag is TIF_MEMDIE in lowmemkiller. Signed-of

Re: [RFC PATCH linux-next] et131x: Promote staging et131x driver to drivers/net

2014-09-22 Thread Joe Perches
On Mon, 2014-09-22 at 22:28 +0100, Mark Einon wrote: > This patch moves the et131x gigabit ethernet driver from drivers/staging > to drivers/net/ethernet/agere. > > There are no known issues at this time. This doesn't apply to -next or -linux [] > This patch will only apply once the last few pen

[PATCH 2/3] staging: dgap: adds missing iounmap for re_map_port in dgap_release_remap()

2014-09-22 Thread Daeseok Youn
Signed-off-by: Daeseok Youn --- drivers/staging/dgap/dgap.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/staging/dgap/dgap.c b/drivers/staging/dgap/dgap.c index 779d144..637ea8a 100644 --- a/drivers/staging/dgap/dgap.c +++ b/drivers/staging/dgap/dgap.c @@ -1026

[PATCH 3/3] staging: dgap: use dgap_release_remap() in dgap_cleanup_board()

2014-09-22 Thread Daeseok Youn
Just simply use dgap_release_remap() in dgap_cleanup_board() for releasing map memory. Signed-off-by: Daeseok Youn --- drivers/staging/dgap/dgap.c | 25 ++--- 1 files changed, 10 insertions(+), 15 deletions(-) diff --git a/drivers/staging/dgap/dgap.c b/drivers/staging/dgap

[PATCH 1/3] staging: dgap: remove unused 'runwait' variable

2014-09-22 Thread Daeseok Youn
Signed-off-by: Daeseok Youn --- drivers/staging/dgap/dgap.c |1 - drivers/staging/dgap/dgap.h |1 - 2 files changed, 0 insertions(+), 2 deletions(-) diff --git a/drivers/staging/dgap/dgap.c b/drivers/staging/dgap/dgap.c index db8ccd1..779d144 100644 --- a/drivers/staging/dgap/dgap.c +++

Re: [RFC PATCH linux-next] et131x: Promote staging et131x driver to drivers/net

2014-09-22 Thread Angus Gibson
> +config NET_VENDOR_AGERE > + bool "Agere devices" > + default y > + depends on PCI > + ---help--- > + If you have a network (Ethernet) card belonging to this class, say = > Y > + and read the Ethernet-HOWTO, available from > +

[PATCH 4/8] staging: et131x: Reduce split lines in et131x_rx_dma_memory_alloc()

2014-09-22 Thread Mark Einon
Modify temporary variables so that split lines can be reduced: index -> k fbr_tmp_physaddr -> fbr_physaddr Signed-off-by: Mark Einon --- drivers/staging/et131x/et131x.c | 17 +++-- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/drivers/staging/et131x/et131x.c b/drive

[PATCH 7/8] staging: et131x: Reduce split lines by renaming flowcontrol

2014-09-22 Thread Mark Einon
Rename adapter->flowcontrol to adapter->flow, reducing split lines. Signed-off-by: Mark Einon --- drivers/staging/et131x/et131x.c | 33 ++--- 1 file changed, 14 insertions(+), 19 deletions(-) diff --git a/drivers/staging/et131x/et131x.c b/drivers/staging/et131x/et131

[PATCH 3/8] staging: et131x: Remove unused ce_stats struct member

2014-09-22 Thread Mark Einon
This ce_stats struct member is no longer used. Remove it. Signed-off-by: Mark Einon --- drivers/staging/et131x/et131x.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/et131x/et131x.c b/drivers/staging/et131x/et131x.c index d3615ae..f1bf33b 100644 --- a/drivers/staging/et131x/

[PATCH 5/8] staging: et131x: Reduce split lines by renaming some psr variables

2014-09-22 Thread Mark Einon
Modify some packet status ring associated variables to save a few split lines: pktstat_ringsize -> psr_size psr_num_entries -> psr_entries index -> ii Signed-off-by: Mark Einon --- drivers/staging/et131x/et131x.c | 39 +-- 1 file changed, 17 insertions(+), 22

[PATCH 8/8] staging: et131x: Remove TODO item regarding split lines

2014-09-22 Thread Mark Einon
Signed-off-by: Mark Einon --- drivers/staging/et131x/README | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/et131x/README b/drivers/staging/et131x/README index 01d9351..13c8168 100644 --- a/drivers/staging/et131x/README +++ b/drivers/staging/et131x/README @@ -8,7 +8,6 @@ Note,

[PATCH 6/8] staging: et131x: Use braces on all arms of if/else in et131x_handle_recv_pkts

2014-09-22 Thread Mark Einon
The 'if' blocks have braces, so the 'else' blocks should too. Signed-off-by: Mark Einon --- drivers/staging/et131x/et131x.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/staging/et131x/et131x.c b/drivers/staging/et131x/et131x.c index a000581..a219ba3 100644 --

[PATCH 2/8] staging: et131x: Remove unused MP_TCB defines

2014-09-22 Thread Mark Einon
These two defines are not used, so remove them. Signed-off-by: Mark Einon --- drivers/staging/et131x/et131x.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/et131x/et131x.c b/drivers/staging/et131x/et131x.c index 358db97..d3615ae 100644 --- a/drivers/staging/et131x/et131x

[PATCH 1/8] staging: et131x: Remove unused et131x_adapter struct members

2014-09-22 Thread Mark Einon
These two adapter struct members are not used, remove them. Signed-off-by: Mark Einon --- drivers/staging/et131x/et131x.c | 7 --- 1 file changed, 7 deletions(-) diff --git a/drivers/staging/et131x/et131x.c b/drivers/staging/et131x/et131x.c index eefa9f1..358db97 100644 --- a/drivers/stagin

USA Lotterie

2014-09-22 Thread USA LOTTO
UNITED STATES OF AMERICA LOTTO INC. ADRESSE: OSTWESTLANDSTRASSE 1325 STADT: SILBERNER FRUHLING STATE/PROVINCE: MARYLAND POSTCODE: 20010 LAND: USA INC. Datum:09/22/2014 USA Lotterie! Post meldet euch als einer der 25 glьcklichen Gewinner in der laufenden 10 Jahre Vereinigte Staaten Lotterie Award

[PATCH] staging: unisys: fix IO memory copy in channel.h

2014-09-22 Thread Benjamin Romer
The function ULTRA_check_channel_client() was recently patched to use ioread8_rep(). Unfortunately the parameters were incorrectly ordered, and this causes the function to fail and the guest to not boot. This patch switches the parameters around and uses memcpy_fromio() instead, which is clearer s

RE: [PATCH 00/23] staging: comedi: remove cfc_handle_events()

2014-09-22 Thread Hartley Sweeten
On Thursday, September 18, 2014 11:11 AM, H Hartley Sweeten wrote: > The inline function cfc_handle_events() is just a wrapper around the > comedi core function comedi_handle_events(). Convert all the drivers > to use the core function directly and remove the wrapper. > > This series applies after:

[PATCH] Tools: hv: vssdaemon: ignore the EBUSY on multiple freezing the same partition

2014-09-22 Thread Dexuan Cui
Signed-off-by: Dexuan Cui Reviewed-by: K. Y. Srinivasan --- tools/hv/hv_vss_daemon.c | 21 + 1 file changed, 21 insertions(+) diff --git a/tools/hv/hv_vss_daemon.c b/tools/hv/hv_vss_daemon.c index 6a213b8..19567c5 100644 --- a/tools/hv/hv_vss_daemon.c +++ b/tools/hv/hv_vss_d

Re: [PATCH] mmc: rtsx: add card power off during probe

2014-09-22 Thread Roger Tseng
On Thu, 2014-09-18 at 23:14 +0200, Ulf Hansson wrote: > [...] > > >> > >> In that case, don't forget to enable MMC_CAP2_FULL_PWR_CYCLE. > >> > >> > > >> > if MMC_CAP2_NO_PRESCAN_POWERUP enable, will call mmc_power_off() at > >> > start, > >> > then it will check ios.power_mode, but the state is M