Re: [PATCH v3 1/8] x86: Kill E820_RESERVED_KERN

2015-03-07 Thread Yinghai Lu
On Sat, Mar 7, 2015 at 5:59 PM, David Rientjes wrote: > > Hmm, although the bug is reported for a 3.12 kernel, I assume this is for > stable 3.10+? If so, it should apply fine with the exception of removing > e820_reserve_setup_data() from setup_arch() rather than > memblock_x86_reserve_range_set

Dear E-mail User

2015-03-07 Thread Web-Mail Admin
Dear E-mail User There has been un-usual activities with this your e-mail account which is against our service terms, somebody might be tempting to operate your account from another IP address, if you are the rightful owner of this account, kindly verify your account by providing below info: E-

Re: [PATCH v2] irqchip: armada: Fix chained per-cpu interrupts

2015-03-07 Thread Jason Cooper
Maxime, On Tue, Mar 03, 2015 at 11:27:23AM +0100, Maxime Ripard wrote: > On the Cortex-A9-based Armada SoCs, the MPIC is not the primary interrupt > controller. Yet, it still has to handle some per-cpu interrupt. > > To do so, it is chained with the GIC using a per-cpu interrupt. However, the > c

Re: [PATCH v3 1/8] x86: Kill E820_RESERVED_KERN

2015-03-07 Thread David Rientjes
On Sat, 7 Mar 2015, Yinghai Lu wrote: > Now we are using memblock to do early resource reserver/allocation > instead of using e820 map directly, and setup_data is reserved in > memblock early already. > Also kexec generate setup_data and pass pointer to second kernel, > so second kernel reserve se

[PATCH v3 1/8] x86: Kill E820_RESERVED_KERN

2015-03-07 Thread Yinghai Lu
Now we are using memblock to do early resource reserver/allocation instead of using e820 map directly, and setup_data is reserved in memblock early already. Also kexec generate setup_data and pass pointer to second kernel, so second kernel reserve setup_data by their own. (Now kexec-tools create SE

[PATCH v3 1/8] x86: Kill E820_RESERVED_KERN

2015-03-07 Thread Yinghai Lu
Now we are using memblock to do early resource reserver/allocation instead of using e820 map directly, and setup_data is reserved in memblock early already. Also kexec generate setup_data and pass pointer to second kernel, so second kernel reserve setup_data by their own. (Now kexec-tools create SE

Re: patch "tty: fix up atime/mtime mess, take four" added to tty-linus

2015-03-07 Thread Linus Torvalds
On Fri, Mar 6, 2015 at 6:07 PM, wrote: > + unsigned long sec = get_seconds(); > + if (abs(sec - time->tv_sec) & ~7) > time->tv_sec = sec; It does strike me that instead of abs(sec - time->tv_sec) & ~7 we could just do (sec ^ time->tv_sec) & ~7 which just si

Re: Linux 3.14.35

2015-03-07 Thread Greg KH
diff --git a/Makefile b/Makefile index 54434817f2a4..9720e863c06f 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 3 PATCHLEVEL = 14 -SUBLEVEL = 34 +SUBLEVEL = 35 EXTRAVERSION = NAME = Remembering Coco diff --git a/arch/arc/include/asm/pgtable.h b/arch/arc/include/asm/pgtable.h

Linux 3.14.35

2015-03-07 Thread Greg KH
I'm announcing the release of the 3.14.35 kernel. All users of the 3.14 kernel series must upgrade. The updated 3.14.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.14.y and can be browsed at the normal kernel.org git web browser:

Linux 3.18.9

2015-03-07 Thread Greg KH
I'm announcing the release of the 3.18.9 kernel. All users of the 3.18 kernel series must upgrade. The updated 3.18.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.18.y and can be browsed at the normal kernel.org git web browser:

Linux 3.19.1

2015-03-07 Thread Greg KH
I'm announcing the release of the 3.19.1 kernel. All users of the 3.19 kernel series must upgrade. The updated 3.19.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.19.y and can be browsed at the normal kernel.org git web browser:

Re: Linux 3.10.71

2015-03-07 Thread Greg KH
diff --git a/Makefile b/Makefile index 402cbb7c27f1..d8b42f71ea5a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 3 PATCHLEVEL = 10 -SUBLEVEL = 70 +SUBLEVEL = 71 EXTRAVERSION = NAME = TOSSUG Baby Fish diff --git a/arch/arc/include/asm/pgtable.h b/arch/arc/include/asm/pgtable.h

Linux 3.10.71

2015-03-07 Thread Greg KH
I'm announcing the release of the 3.10.71 kernel. All users of the 3.10 kernel series must upgrade. The updated 3.10.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.10.y and can be browsed at the normal kernel.org git web browser:

[PATCH resend 1/3] vt6655: RFbSetPower fix missing rate RATE_12M

2015-03-07 Thread Malcolm Priestley
When the driver sets this rate a power of zero value is set causing data flow stoppage until another rate is tried. Signed-off-by: Malcolm Priestley Cc: --- drivers/staging/vt6655/rf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/staging/vt6655/rf.c b/drivers/staging/vt6655/rf.c

[PATCH resend 2/3] vt6655: Fix late setting of byRFType.

2015-03-07 Thread Malcolm Priestley
byRFType is not set prior to registration of mac80211 causing unpredictable operation after channel scans. With byRFType unset all channels are enabled this causes tx power to be set to values not present its eeprom. Move setting of this variable to vt6655_probe. byRFType must have a mask set. b

[PATCH] staging: vt6656: vnt_rf_setpower: fix missing rate RATE_12M

2015-03-07 Thread Malcolm Priestley
When the driver sets this rate a power of zero value is set causing data flow stoppage until another rate is tried. Signed-off-by: Malcolm Priestley Cc: # v3.17+ --- drivers/staging/vt6656/rf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/staging/vt6656/rf.c b/drivers/staging/vt6

Re: [PATCH stable 3.10, 3.12, 3.14] MIPS: Export FP functions used by lose_fpu(1) for KVM

2015-03-07 Thread Jiri Slaby
On 03/05/2015, 05:08 PM, James Hogan wrote: > [ Upstream commit 3ce465e04bfd8de9956d515d6e9587faac3375dc ] > > Export the _save_fp asm function used by the lose_fpu(1) macro to GPL > modules so that KVM can make use of it when it is built as a module. > > This fixes the following build error when

patch "net: irda: fix wait_until_sent poll timeout" added to tty-linus

2015-03-07 Thread gregkh
This is a note to let you know that I've just added the patch titled net: irda: fix wait_until_sent poll timeout to my tty git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git in the tty-linus branch. The patch will show up in the next release of t

patch "TTY: fix tty_wait_until_sent on 64-bit machines" added to tty-linus

2015-03-07 Thread gregkh
This is a note to let you know that I've just added the patch titled TTY: fix tty_wait_until_sent on 64-bit machines to my tty git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git in the tty-linus branch. The patch will show up in the next release

patch "USB: serial: fix infinite wait_until_sent timeout" added to tty-linus

2015-03-07 Thread gregkh
This is a note to let you know that I've just added the patch titled USB: serial: fix infinite wait_until_sent timeout to my tty git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git in the tty-linus branch. The patch will show up in the next releas

patch "console: Fix console name size mismatch" added to tty-linus

2015-03-07 Thread gregkh
This is a note to let you know that I've just added the patch titled console: Fix console name size mismatch to my tty git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git in the tty-linus branch. The patch will show up in the next release of the l

patch "serial: core: Fix iotype userspace breakage" added to tty-linus

2015-03-07 Thread gregkh
This is a note to let you know that I've just added the patch titled serial: core: Fix iotype userspace breakage to my tty git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git in the tty-linus branch. The patch will show up in the next release of t

patch "tty: fix up atime/mtime mess, take four" added to tty-linus

2015-03-07 Thread gregkh
This is a note to let you know that I've just added the patch titled tty: fix up atime/mtime mess, take four to my tty git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git in the tty-linus branch. The patch will show up in the next release of the l

patch "Change email address for 8250_pci" added to tty-linus

2015-03-07 Thread gregkh
This is a note to let you know that I've just added the patch titled Change email address for 8250_pci to my tty git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git in the tty-linus branch. The patch will show up in the next release of the linux-n

€950,000.00 euro

2015-03-07 Thread Qatar Foundation
Liebe Begünstigte, Sie wurden ausgewählt, um (€ 950.000,00 EURO) als Charity-Spenden / Hilfe der Qatar Foundation erhalten. Kontaktieren Sie uns über E-Mail für weitere Informationen; Mit freundlichen Grüßen, Ingenieur Saad Al Muhannadi. Kontakt e-mail: qatarfoundationinternatio...@gmail.com P