Re: [PATCH v3 1/4] acpi: move x86/mm/srat.c to x86/kernel/acpi/srat.c

2013-02-04 Thread Yasuaki Ishimatsu
2013/02/05 16:35, liguang wrote: > srat table should present only on acpi domain, > seems mm/ is not the right place for it. > > Signed-off-by: liguang > --- Reviewed-by: Yasuaki Ishimatsu Thanks, Yasuaki Ishimatsu > arch/x86/kernel/acpi/Makefile |1 + > arch/x86/kernel/acpi/srat.c

Re: [PATCH v3 2/4] numa: avoid export acpi_numa variable

2013-02-04 Thread Yasuaki Ishimatsu
2013/02/05 16:36, liguang wrote: > acpi_numa is used to prevent srat table > being parsed, seems a little miss-named, > if 'noacpi' was specified by cmdline and > CONFIG_ACPI_NUMA was enabled, acpi_numa > will be operated directly from everywhere > it needed to disable/enable numa in acpi > mode

Re: [PATCH 0/2] mm: hotplug: implement non-movable version of get_user_pages() to kill long-time pin pages

2013-02-04 Thread Minchan Kim
On Tue, Feb 05, 2013 at 02:18:42PM +0800, Lin Feng wrote: > > > On 02/05/2013 01:25 PM, Minchan Kim wrote: > > Hi Lin, > > > > On Tue, Feb 05, 2013 at 12:42:48PM +0800, Lin Feng wrote: > >> Hi Minchan, > >> > >> On 02/05/2013 08:58 AM, Minchan Kim wrote: > >>> Hello, > >>> > >>> On Mon, Feb 04,

Re: [PATCHv5,RESEND 1/8] gpu: host1x: Add host1x driver

2013-02-04 Thread Thierry Reding
On Mon, Feb 04, 2013 at 07:30:08PM -0800, Terje Bergström wrote: > On 04.02.2013 01:09, Thierry Reding wrote: > > On Tue, Jan 15, 2013 at 01:43:57PM +0200, Terje Bergstrom wrote: > >> Add host1x, the driver for host1x and its client unit 2D. > > > > Maybe this could be a bit more verbose. Perhaps

Re: [Intel-gfx] [PATCH V2 3/3] i915: ignore lid open event when resuming

2013-02-04 Thread Zhang Rui
On Tue, 2013-02-05 at 07:58 +0800, Zhang Rui wrote: > On Mon, 2013-02-04 at 16:25 +0100, Daniel Vetter wrote: > > On Mon, Feb 04, 2013 at 03:10:11PM +0800, Zhang Rui wrote: > > > i915 driver needs to do modeset when > > > 1. system resumes from sleep > > > 2. lid is opened > > > > > > In

[PATCH v3 1/4] acpi: move x86/mm/srat.c to x86/kernel/acpi/srat.c

2013-02-04 Thread liguang
srat table should present only on acpi domain, seems mm/ is not the right place for it. Signed-off-by: liguang --- arch/x86/kernel/acpi/Makefile |1 + arch/x86/kernel/acpi/srat.c | 198 + arch/x86/mm/Makefile |1 - arch/x86/mm/srat.c

[PATCH v3 2/4] numa: avoid export acpi_numa variable

2013-02-04 Thread liguang
acpi_numa is used to prevent srat table being parsed, seems a little miss-named, if 'noacpi' was specified by cmdline and CONFIG_ACPI_NUMA was enabled, acpi_numa will be operated directly from everywhere it needed to disable/enable numa in acpi mode which was a bad thing, so, try to export a

[PATCH v3 4/4] remove include asm/acpi.h in process_driver.c

2013-02-04 Thread liguang
process_driver.c include linux/acpi.h which already include asm/acpi.h, so remove it. Reviewed-by: Yasuaki Ishimatsu Acked-by: David Rientjes Signed-off-by: liguang --- drivers/acpi/processor_driver.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git

[PATCH v3 3/4] acpi: add clock_domain field to acpi_srat_cpu_affinity

2013-02-04 Thread liguang
according to ACPI SPEC v5.0, page 152, 5.2.16.1 Processor Local APIC/SAPIC Affinity Structure, the last member of it is clock_domain. Reviewed-by: Yasuaki Ishimatsu Acked-by: David Rientjes Signed-off-by: liguang --- include/acpi/actbl1.h |2 +- 1 files changed, 1 insertions(+), 1

[PATCH v3 0/4] acpi: do some changes for numa info

2013-02-04 Thread liguang
just do some trivial changes to make acpi's numa info operation more cleaner. ChangeLog v2->v3 1. rebase on linux-next 2. bring back lost Makefile changes spotted by David Rientjes spotted by Yasuaki Ishimatsu v1->v2 1. fix-up several coding issues 2. finish srat.c change spotted by

Re: [PATCH] mm: cma: fix accounting of CMA pages placed in high memory

2013-02-04 Thread Minchan Kim
Hi Marek, On Tue, Feb 05, 2013 at 08:10:19AM +0100, Marek Szyprowski wrote: > Hello, > > On 2/5/2013 12:34 AM, Minchan Kim wrote: > >On Mon, Feb 04, 2013 at 11:27:05AM +0100, Marek Szyprowski wrote: > >> The total number of low memory pages is determined as > >> totalram_pages - totalhigh_pages,

Re: [ANNOUNCE] 3.6.11-rt26

2013-02-04 Thread Qiang Huang
On 2013/2/4 22:58, Thomas Gleixner wrote: > Dear RT Folks, > > I'm pleased to announce the 3.6.11-rt26 release. > > Changes since 3.6.11-rt25: > >1) Fix the RT highmem implementation on x86 Hi Thomas, >From patches-3.6.11-rt28.patch.gz, your patch x86-highmem-make-it-work.patch did this

[PATCH v3 3/3] KVM: MMU: cleanup __direct_map

2013-02-04 Thread Xiao Guangrong
Use link_shadow_page to link the sp to the spte in __direct_map Signed-off-by: Xiao Guangrong --- arch/x86/kvm/mmu.c | 12 1 files changed, 4 insertions(+), 8 deletions(-) diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index 2112c1b..8041454 100644 --- a/arch/x86/kvm/mmu.c

[PATCH v3 2/3] KVM: MMU: remove pt_access in mmu_set_spte

2013-02-04 Thread Xiao Guangrong
It is only used in debug code, so drop it Signed-off-by: Xiao Guangrong --- arch/x86/kvm/mmu.c | 17 +++-- arch/x86/kvm/paging_tmpl.h |9 - 2 files changed, 11 insertions(+), 15 deletions(-) diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index

[PATCH v3 1/3] KVM: MMU: cleanup mapping-level

2013-02-04 Thread Xiao Guangrong
Use min() to cleanup mapping_level Signed-off-by: Xiao Guangrong --- arch/x86/kvm/mmu.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index ff2fc80..fe877da 100644 --- a/arch/x86/kvm/mmu.c +++ b/arch/x86/kvm/mmu.c @@ -832,8

[PATCH v3 0/3] KVM: MMU: simple cleanups

2013-02-04 Thread Xiao Guangrong
There are the simple cleanups for MMU, no function / logic changed. Marcelo, Gleb, please apply them after applying "[PATCH v3] KVM: MMU: lazily drop large spte" Changelog: no change, just split them from the previous patchset for good review. Thanks! -- To unsubscribe from this list: send the

Re:[PATCH] sched/rt: Decrease number of calls of push_rt_task() in push_rt_tasks()

2013-02-04 Thread Kirill Tkhai
> On 2013/2/1 5:57, Kirill Tkhai wrote: > >> 31.01.2013, 20:08, "Steven Rostedt" : >> >>> On Mon, 2013-01-28 at 03:46 +0400, Kirill Tkhai wrote: >>> The patch aims to decrease the number of calls of push_rt_task() in push_rt_tasks(). It's not necessary to push more than

Re: [PATCH 0/4] CPUFreq: Implement per policy instances of governors

2013-02-04 Thread Viresh Kumar
On Mon, Feb 4, 2013 at 10:20 PM, Borislav Petkov wrote: > On Mon, Feb 04, 2013 at 09:07:11PM +0530, Viresh Kumar wrote: >> └── ondemand >> ├── sampling_rate >> ├── up_threshold >> └── ignore_nice > > So this is adding the current governor as a per-cpu thing. Its per policy, but yes

Re: [PATCH 10/18] mm: teach truncate_inode_pages_range() to handle non page aligned ranges

2013-02-04 Thread Lukáš Czerner
On Mon, 4 Feb 2013, Andrew Morton wrote: > Date: Mon, 4 Feb 2013 12:51:36 -0800 > From: Andrew Morton > To: Lukáš Czerner > Cc: linux...@kvack.org, linux-kernel@vger.kernel.org, > linux-fsde...@vger.kernel.org, linux-e...@vger.kernel.org, > x...@oss.sgi.com, Hugh Dickins > Subject: Re:

Re: [PATCH] f2fs: add compat_ioctl to provide backward compatability

2013-02-04 Thread Jaegeuk Kim
2013-02-05 (화), 16:02 +0900, Namjae Jeon: > 2013/2/5, Jaegeuk Kim : > > Hi, > > > > 2013-02-05 (화), 14:28 +0900, Namjae Jeon: > >> Hi Jaegeuk. > >> > >> Oops!, I was missing include header. > >> Sorry, I will send v2 patch again. > > > > I got a build error, and simply added the following header

Re: [PATCH] f2fs: add compat_ioctl to provide backward compatability

2013-02-04 Thread Namjae Jeon
2013/2/5, Namjae Jeon : > 2013/2/5, Jaegeuk Kim : >> Hi, >> >> 2013-02-05 (화), 14:28 +0900, Namjae Jeon: >>> Hi Jaegeuk. >>> >>> Oops!, I was missing include header. >>> Sorry, I will send v2 patch again. >> >> I got a build error, and simply added the following header file in your >> patch. >> >>

[PATCH v3] KVM: MMU: lazily drop large spte

2013-02-04 Thread Xiao Guangrong
Currently, kvm zaps the large spte if write-protected is needed, the later read can fault on that spte. Actually, we can make the large spte readonly instead of making them un-present, the page fault caused by read access can be avoid The idea is from Avi: | As I mentioned before,

Re: [PATCH] mm: cma: fix accounting of CMA pages placed in high memory

2013-02-04 Thread Marek Szyprowski
Hello, On 2/5/2013 12:34 AM, Minchan Kim wrote: On Mon, Feb 04, 2013 at 11:27:05AM +0100, Marek Szyprowski wrote: > The total number of low memory pages is determined as > totalram_pages - totalhigh_pages, so without this patch all CMA > pageblocks placed in highmem were accounted to low

Re: [PATCH 2/3 v2] fb: udlfb: fix hang at disconnect

2013-02-04 Thread Alexander Holler
Am 04.02.2013 20:25, schrieb Greg KH: > On Mon, Feb 04, 2013 at 08:17:04PM +0100, Alexander Holler wrote: >> Am 04.02.2013 13:05, schrieb Alexander Holler: >>> Am 04.02.2013 02:14, schrieb Greg KH: >>> So you are right in that your driver will wait for forever for a disconnect() to

Re: [PATCH 5/6] cpufreq: balance out cpufreq_cpu_{get,put} for scaling drivers using setpolicy

2013-02-04 Thread Viresh Kumar
On 4 February 2013 23:55, Dirk Brandewie wrote: > Hi Viresh, > > I have rebased onto bleeding-edge when I reboot the system I get a kernel > panic. > Any idea what I could have done that would have broken the restructured > cpufreq_{add/remove}_dev. Dirk, there are two mail chains for similar

Re: [PATCH] f2fs: add compat_ioctl to provide backward compatability

2013-02-04 Thread Namjae Jeon
2013/2/5, Jaegeuk Kim : > Hi, > > 2013-02-05 (화), 14:28 +0900, Namjae Jeon: >> Hi Jaegeuk. >> >> Oops!, I was missing include header. >> Sorry, I will send v2 patch again. > > I got a build error, and simply added the following header file in your > patch. > > #include > > Is it correct? Yes,

Re: [PATCH 1/3] PM / devfreq: set min/max freq limit from freq table

2013-02-04 Thread MyungJoo Ham
On Tue, Jan 15, 2013 at 8:21 PM, Rajagopal Venkat wrote: > On 14 January 2013 20:06, MyungJoo Ham wrote: >> On Tue, Jan 8, 2013 at 2:50 PM, Rajagopal Venkat >> wrote: >>> Set devfreq device min and max frequency limits when device >>> is added to devfreq, provided frequency table is supplied.

Re: No sysfs directory for openvswitch module when built-in

2013-02-04 Thread Ben Pfaff
Stephen Hemminger writes: > On Tue, 29 Jan 2013 22:15:18 +0800 > Cong Wang wrote: > >> Hello, Rusty, Jesse, >> >> I met an interesting problem when I compile openvswitch module as a >> built-in (actually I compile ALL kernel modules as built-in), there is >> no /sys/module/openvswitch/

Re: [PATCH] f2fs: add compat_ioctl to provide backward compatability

2013-02-04 Thread Jaegeuk Kim
Hi, 2013-02-05 (화), 14:28 +0900, Namjae Jeon: > Hi Jaegeuk. > > Oops!, I was missing include header. > Sorry, I will send v2 patch again. I got a build error, and simply added the following header file in your patch. #include Is it correct? Thanks, > > Thanks. > > 2013/2/4, Namjae Jeon :

RE: [PATCH 2/2] ARM: davinci: da850: add wdt OF_DEV_AUXDATA entry

2013-02-04 Thread Kumar, Anil
Hi Serqei, On Mon, Feb 04, 2013 at 17:30:20, Sergei Shtylyov wrote: > Hello. > > On 04-02-2013 15:50, Sekhar Nori wrote: > > > Auxdata is not evm specific. This can instead be called > > da850_auxdata_lookup[]. > > > Also, I dont think it is necessary to add auxdata in a separate patch > >

Re: ISO/IEC 7811 driver for Magnetic Cards.

2013-02-04 Thread H. Peter Anvin
There is no reason for that to be in the kernel. Priyaranjan Das wrote: >Hi Peter, > >On Tue, Feb 5, 2013 at 11:26 AM, H. Peter Anvin wrote: >> On 02/04/2013 09:08 PM, Priyaranjan Das wrote: >>> >>> Hi All, >>> >>> I am working on a Magnetic Card driver which would support ISO/IEC >>> 7811

Re: [PATCH v4 2/2] usb: phy: samsung: Add PHY support for USB 3.0 controller

2013-02-04 Thread Vivek Gautam
Hi Kukjin, On Wed, Jan 30, 2013 at 11:31 AM, Kukjin Kim wrote: > Vivek Gautam wrote: >> >> Adding PHY driver support for USB 3.0 controller for Samsung's >> SoCs. >> >> Signed-off-by: Vivek Gautam >> --- >> >> Changes from v3: >> - Making SAMSUNG_USB3PHY dependent on SAMSUNG_USBPHY. >> -

RE: [PATCH V2 1/6] pinctrl: pinctrl-single: use arch_initcall and module_exit

2013-02-04 Thread Vishwanathrao Badarkhe, Manish
On Fri, Feb 01, 2013 at 22:41:24, Tony Lindgren wrote: > * Tony Lindgren [130201 09:12]: > > * Linus Walleij [130129 03:03]: > > > On Tue, Jan 29, 2013 at 8:38 AM, Vishwanathrao Badarkhe, Manish > > > wrote: > > > > > > > Currently, I2C driver gets probed before pinctrl driver. > > > > To

Re: [PATCH 0/2] mm: hotplug: implement non-movable version of get_user_pages() to kill long-time pin pages

2013-02-04 Thread Lin Feng
On 02/05/2013 01:25 PM, Minchan Kim wrote: > Hi Lin, > > On Tue, Feb 05, 2013 at 12:42:48PM +0800, Lin Feng wrote: >> Hi Minchan, >> >> On 02/05/2013 08:58 AM, Minchan Kim wrote: >>> Hello, >>> >>> On Mon, Feb 04, 2013 at 06:04:06PM +0800, Lin Feng wrote: Currently get_user_pages() always

Re: [PATCH v4 1/2] usb: phy: samsung: Common out the generic stuff

2013-02-04 Thread Vivek Gautam
Hi Kukjin, On Wed, Jan 30, 2013 at 11:26 AM, Kukjin Kim wrote: > Vivek Gautam wrote: >> >> Moving register and structure definitions to header file, >> and keeping the generic functions to be used across >> multiple PHYs in common file "samsung-usbphy.c". >> Also renaming the usb 2.0 phy driver

Re: [PATCH 3/3] PM / devfreq: account suspend/resume for stats

2013-02-04 Thread MyungJoo Ham
On Tue, Jan 15, 2013 at 8:46 PM, Rajagopal Venkat wrote: > On 14 January 2013 20:18, MyungJoo Ham wrote: >> On Tue, Jan 8, 2013 at 2:50 PM, Rajagopal Venkat >> wrote: >>> devfreq stats is not taking device suspend and resume into >>> account. Fix it. >>> >>> Signed-off-by: Rajagopal Venkat >>

Re: [PATCH v7 4/4] zram: get rid of lockdep warning

2013-02-04 Thread Ric Mason
On Tue, 2013-02-05 at 15:06 +0900, Minchan Kim wrote: > On Mon, Feb 04, 2013 at 01:39:24AM -0600, Ric Mason wrote: > > On Mon, 2013-02-04 at 08:46 +0900, Minchan Kim wrote: > > > Lockdep complains about recursive deadlock of zram->init_lock. > > > [1] made it false positive because we can't

Re: User-triggerable WARNING with fuse

2013-02-04 Thread Tero Roponen
On Mon, 4 Feb 2013, Miklos Szeredi wrote: > On Fri, Feb 1, 2013 at 12:39 PM, Tero Roponen wrote: > > > > Using the attached program I can trigger the following WARNING > > reliably as a normal user. This happens at least both in 3.8-rc6 > > and 3.7.5. > > > > The kernel is tainted by

Re: [PATCH v3 05/10] spi/pxa2xx: break out the private DMA API usage into a separate file

2013-02-04 Thread Mika Westerberg
On Mon, Feb 04, 2013 at 08:43:42PM +0100, Linus Walleij wrote: > On Tue, Jan 22, 2013 at 11:26 AM, Mika Westerberg > wrote: > > > The PXA SPI driver uses PXA platform specific private DMA implementation > > which does not work on non-PXA platforms. In order to use this driver on > > other

Alerta de seguridad (kf03#7^2)

2013-02-04 Thread Sistema Administrador
-- Estimado titular de la cuenta, En estos momentos estamos actualizando nuestra basede datos central, e-mail para el primer trimestre de 2013, al darse cuenta de que su cuenta de correo web se ha visto comprometida por el acceso spammers.They tenía a su cuenta de

Re: [PATCH v7 4/4] zram: get rid of lockdep warning

2013-02-04 Thread Minchan Kim
On Mon, Feb 04, 2013 at 01:39:24AM -0600, Ric Mason wrote: > On Mon, 2013-02-04 at 08:46 +0900, Minchan Kim wrote: > > Lockdep complains about recursive deadlock of zram->init_lock. > > [1] made it false positive because we can't request IO to zram > > before setting disksize. Anyway, we should

Re: [PATCH v7 2/4] zram: force disksize setting before using zram

2013-02-04 Thread Minchan Kim
On Mon, Feb 04, 2013 at 01:33:15AM -0600, Ric Mason wrote: > Hi Minchan, > On Mon, 2013-02-04 at 08:46 +0900, Minchan Kim wrote: > > Now zram document syas "set disksize is optional" > > but partly it's wrong. When you try to use zram firstly after > > booting, you must set disksize, otherwise

Re: [PATCH] mm: break circular include from linux/mmzone.h

2013-02-04 Thread li guang
在 2013-02-04一的 21:20 -0800,David Rientjes写道: > On Tue, 5 Feb 2013, liguang wrote: > > > linux/mmzone.h included linux/memory_hotplug.h, > > and linux/memory_hotplug.h also included > > linux/mmzone.h, so there's a bad cirlular. > > > > And both of these are protected by _LINUX_MMZONE_H and >

Re: [PATCH v2 1/4] acpi: move x86/mm/srat.c to x86/kernel/acpi/srat.c

2013-02-04 Thread li guang
在 2013-02-04一的 21:35 -0800,David Rientjes写道: > On Tue, 5 Feb 2013, liguang wrote: > > > srat table should present only on acpi domain, > > seems mm/ is not the right place for it. > > > > Reviewed-by: David Rientjes > > I certainly didn't review this, please read >

Re: [PATCH v2 2/4] numa: avoid export acpi_numa variable

2013-02-04 Thread li guang
在 2013-02-04一的 21:39 -0800,David Rientjes写道: > On Tue, 5 Feb 2013, liguang wrote: > > > acpi_numa is used to prevent srat table > > being parsed, seems a little miss-named, > > if 'noacpi' was specified by cmdline and > > CONFIG_ACPI_NUMA was enabled, acpi_numa > > will be operated directly from

Re: ISO/IEC 7811 driver for Magnetic Cards.

2013-02-04 Thread H. Peter Anvin
On 02/04/2013 09:08 PM, Priyaranjan Das wrote: Hi All, I am working on a Magnetic Card driver which would support ISO/IEC 7811 standard for track data. Can anyone tell me if such an implementation is available in existing kernel or not? I am basically looking for code that implements the

Re: [PATCH v2 4/4] remove include asm/acpi.h in process_driver.c

2013-02-04 Thread Yasuaki Ishimatsu
2013/02/05 11:37, liguang wrote: > process_driver.c include linux/acpi.h which already > include asm/acpi.h, so remove it. > > Signed-off-by: liguang > --- Reviewed-by: Yasuaki Ishimatsu Thanks, Yasuaki Ishimatsu > drivers/acpi/processor_driver.c |1 - > 1 files changed, 0

Re: [PATCH v5 09/10] clk: tegra: Implement clocks for Tegra114

2013-02-04 Thread Prashant Gaikwad
On Monday 04 February 2013 08:04 PM, Peter De Schrijver wrote: On Mon, Feb 04, 2013 at 08:08:55AM +0100, Prashant Gaikwad wrote: On Friday 01 February 2013 03:48 PM, Peter De Schrijver wrote: ... + /* xusb_hs_src */ + val = readl(clk_base + CLK_SOURCE_XUSB_SS_SRC); + val |=

Re: [PATCH v2 4/4] remove include asm/acpi.h in process_driver.c

2013-02-04 Thread David Rientjes
On Tue, 5 Feb 2013, liguang wrote: > process_driver.c include linux/acpi.h which already > include asm/acpi.h, so remove it. > > Signed-off-by: liguang Acked-by: David Rientjes -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to

Re: [PATCH v5 01/10] clk: tegra: Refactor PLL programming code

2013-02-04 Thread Prashant Gaikwad
On Monday 04 February 2013 08:02 PM, Peter De Schrijver wrote: On Mon, Feb 04, 2013 at 07:06:47AM +0100, Prashant Gaikwad wrote: On Friday 01 February 2013 03:48 PM, Peter De Schrijver wrote: ... -static int clk_pll_wait_for_lock(struct tegra_clk_pll *pll, -

RE: [PATCH] ARM: dts: Adding RTC device node

2013-02-04 Thread Kukjin Kim
Dongjin Kim wrote: > > This patch enables RTC device node defined in > arch/arm/boot/dts/exynos4.dtsi. > > Signed-off-by: Dongjin Kim > --- > arch/arm/boot/dts/exynos4412-odroidx.dts |4 > 1 file changed, 4 insertions(+) > > diff --git a/arch/arm/boot/dts/exynos4412-odroidx.dts >

Re: [PATCH v2 2/4] numa: avoid export acpi_numa variable

2013-02-04 Thread David Rientjes
On Tue, 5 Feb 2013, liguang wrote: > acpi_numa is used to prevent srat table > being parsed, seems a little miss-named, > if 'noacpi' was specified by cmdline and > CONFIG_ACPI_NUMA was enabled, acpi_numa > will be operated directly from everywhere > it needed to disable/enable numa in acpi >

Re: [PATCH 2/4] SUNRPC: remove cache_detail->cache_upcall callback

2013-02-04 Thread Stanislav Kinsbursky
04.02.2013 20:50, Jeff Layton пишет: On Tue, 15 Jan 2013 11:09:36 +0300 Stanislav Kinsbursky wrote: This callback is redundant since all that its' implementations are doing is calling sunrpc_cache_pipe_upcall() with proper function address argument. This function address is now stored on

Re: [PATCH 2/2] fs/aio.c: use get_user_pages_non_movable() to pin ring pages when support memory hotremove

2013-02-04 Thread Lin Feng
Hi Zach, On 02/05/2013 07:02 AM, Zach Brown wrote: >>> index 71f613c..0e9b30a 100644 >>> --- a/fs/aio.c >>> +++ b/fs/aio.c >>> @@ -138,9 +138,15 @@ static int aio_setup_ring(struct kioctx *ctx) >>> } >>> >>> dprintk("mmap address: 0x%08lx\n", info->mmap_base); >>> +#ifdef

Re: [PATCH v2 0/6] SUNRPC: rework cache upcall to avoid NFSd root

2013-02-04 Thread Stanislav Kinsbursky
04.02.2013 18:17, J. Bruce Fields пишет: On Mon, Feb 04, 2013 at 02:02:29PM +0300, Stanislav Kinsbursky wrote: swapping The main idea of this patch set is to call cache request not on kthread upcall, but on userspace daemon cache_read call. This fixes the problem with gaining of wrong dentry

Re: [PATCH v2 1/4] acpi: move x86/mm/srat.c to x86/kernel/acpi/srat.c

2013-02-04 Thread David Rientjes
On Tue, 5 Feb 2013, liguang wrote: > srat table should present only on acpi domain, > seems mm/ is not the right place for it. > > Reviewed-by: David Rientjes I certainly didn't review this, please read Documentation/SubmittingPatches. > Signed-off-by: liguang Couple of issues with this:

Re: [PATCH v2 3/4] acpi: add clock_domain field to acpi_srat_cpu_affinity

2013-02-04 Thread Yasuaki Ishimatsu
2013/02/05 11:37, liguang wrote: > according to ACPI SPEC v5.0, page 152, > 5.2.16.1 Processor Local APIC/SAPIC Affinity Structure, > the last member of it is clock_domain. > > Signed-off-by: liguang > --- Reviewed-by: Yasuaki Ishimatsu Thanks, Yasuaki Ishimatsu > include/acpi/actbl1.h |

linux-next: Tree for Feb 5

2013-02-04 Thread Stephen Rothwell
Hi all, Changes since 20130204: The powerpc tree still had a build failure. The nfsd tree lost its build. The sound-asoc tree gained a build failure so I used the version from next-20130204. I have created today's

RE: [PATCH] ARM: dts: Fix the timing property of MSHC controller

2013-02-04 Thread Kukjin Kim
Dongjin Kim wrote: > > This fixes the property of dw-mshc-sdr-timing and dw-mshc-ddr-timing as > per > its current binding, it only has two cells. > > Signed-off-by: Dongjin Kim > --- > arch/arm/boot/dts/exynos4412-odroidx.dts |4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >

Re: [PATCH v2 3/4] acpi: add clock_domain field to acpi_srat_cpu_affinity

2013-02-04 Thread David Rientjes
On Tue, 5 Feb 2013, liguang wrote: > according to ACPI SPEC v5.0, page 152, > 5.2.16.1 Processor Local APIC/SAPIC Affinity Structure, > the last member of it is clock_domain. > > Signed-off-by: liguang Acked-by: David Rientjes -- To unsubscribe from this list: send the line "unsubscribe

Re: [PATCH] f2fs: add compat_ioctl to provide backward compatability

2013-02-04 Thread Namjae Jeon
Hi Jaegeuk. Oops!, I was missing include header. Sorry, I will send v2 patch again. Thanks. 2013/2/4, Namjae Jeon : > From: Namjae Jeon > > adding compat_ioctl to provide support for backward comptability - 32bit > binary > execution on 64bit kernel. > > Signed-off-by: Namjae Jeon >

Re: [PATCH v2 2/4] numa: avoid export acpi_numa variable

2013-02-04 Thread Yasuaki Ishimatsu
2013/02/05 11:37, liguang wrote: > acpi_numa is used to prevent srat table > being parsed, seems a little miss-named, > if 'noacpi' was specified by cmdline and > CONFIG_ACPI_NUMA was enabled, acpi_numa > will be operated directly from everywhere > it needed to disable/enable numa in acpi > mode

Re: [PATCH 0/2] mm: hotplug: implement non-movable version of get_user_pages() to kill long-time pin pages

2013-02-04 Thread Minchan Kim
Hi Lin, On Tue, Feb 05, 2013 at 12:42:48PM +0800, Lin Feng wrote: > Hi Minchan, > > On 02/05/2013 08:58 AM, Minchan Kim wrote: > > Hello, > > > > On Mon, Feb 04, 2013 at 06:04:06PM +0800, Lin Feng wrote: > >> Currently get_user_pages() always tries to allocate pages from movable > >> zone, >

Re: [PATCH] mm: break circular include from linux/mmzone.h

2013-02-04 Thread David Rientjes
On Tue, 5 Feb 2013, liguang wrote: > linux/mmzone.h included linux/memory_hotplug.h, > and linux/memory_hotplug.h also included > linux/mmzone.h, so there's a bad cirlular. > And both of these are protected by _LINUX_MMZONE_H and __LINUX_MEMORY_HOTPLUG_H, respectively, so what's the problem?

Re: [PATCHv5,RESEND 8/8] drm: tegra: Add gr2d device

2013-02-04 Thread Terje Bergström
On 04.02.2013 04:56, Thierry Reding wrote: > * PGP Signed by an unknown key > > On Tue, Jan 15, 2013 at 01:44:04PM +0200, Terje Bergstrom wrote: > [...] >> diff --git a/drivers/gpu/host1x/drm/drm.c b/drivers/gpu/host1x/drm/drm.c >> @@ -270,7 +274,29 @@ static int tegra_drm_unload(struct

[PATCH] acpi: change Makefile for srat.c building

2013-02-04 Thread liguang
this patch is an addition of the previous patch-set v2 acpi: do some changes for numa info, aimed to bring back the lost Makefile changes. mail-archive-address: http://lkml.indiana.edu/hypermail/linux/kernel/1302.0/02107.html Signed-off-by: liguang --- arch/x86/kernel/acpi/Makefile |1 +

[PATCH] pm: print the name of failed suspend function for platform device

2013-02-04 Thread fli24
Print more info when platform device suspend function failed. Without this patch, we can not get the real platform device suspend API info. Example without this patch: pm_op(): platform_pm_suspend+0x0/0x50 returns -11 PM: Device power.0 failed to suspend: error -11 And with this patch:

Re: [PATCH 2/2] fs/aio.c: use get_user_pages_non_movable() to pin ring pages when support memory hotremove

2013-02-04 Thread Lin Feng
Hi Jeff, On 02/04/2013 11:18 PM, Jeff Moyer wrote: >> --- >> fs/aio.c | 6 ++ >> 1 file changed, 6 insertions(+) >> >> diff --git a/fs/aio.c b/fs/aio.c >> index 71f613c..0e9b30a 100644 >> --- a/fs/aio.c >> +++ b/fs/aio.c >> @@ -138,9 +138,15 @@ static int aio_setup_ring(struct kioctx *ctx)

Re: [PATCH v2 1/4] acpi: move x86/mm/srat.c to x86/kernel/acpi/srat.c

2013-02-04 Thread li guang
在 2013-02-05二的 13:44 +0900,Yasuaki Ishimatsu写道: > Hi Liguang, > > 2013/02/05 11:37, liguang wrote: > > srat table should present only on acpi domain, > > seems mm/ is not the right place for it. > > > > Reviewed-by: David Rientjes > > Signed-off-by: liguang > > --- > > > >

Re: [PATCHv5,RESEND 7/8] ARM: tegra: Add board data and 2D clocks

2013-02-04 Thread Terje Bergström
On 04.02.2013 03:26, Thierry Reding wrote: > * PGP Signed by an unknown key > > On Tue, Jan 15, 2013 at 01:44:03PM +0200, Terje Bergstrom wrote: >> Add a driver alias gr2d for Tegra 2D device, and assign a duplicate >> of 2D clock to that driver alias. >> >> Signed-off-by: Terje Bergstrom >> ---

Re: [PATCHv5,RESEND 5/8] drm: tegra: Move drm to live under host1x

2013-02-04 Thread Terje Bergström
On 04.02.2013 03:08, Thierry Reding wrote: > * PGP Signed by an unknown key > > On Tue, Jan 15, 2013 at 01:44:01PM +0200, Terje Bergstrom wrote: > [...] >> diff --git a/drivers/gpu/host1x/Makefile b/drivers/gpu/host1x/Makefile >> index 697d49a..ffc8bf1 100644 >> --- a/drivers/gpu/host1x/Makefile

Re: [PATCH v2 1/4] acpi: move x86/mm/srat.c to x86/kernel/acpi/srat.c

2013-02-04 Thread Yasuaki Ishimatsu
Hi Liguang, 2013/02/05 11:37, liguang wrote: > srat table should present only on acpi domain, > seems mm/ is not the right place for it. > > Reviewed-by: David Rientjes > Signed-off-by: liguang > --- > > arch/x86/kernel/acpi/srat.c | 197 > +++ >

Re: [PATCH 0/2] mm: hotplug: implement non-movable version of get_user_pages() to kill long-time pin pages

2013-02-04 Thread Lin Feng
Hi Minchan, On 02/05/2013 08:58 AM, Minchan Kim wrote: > Hello, > > On Mon, Feb 04, 2013 at 06:04:06PM +0800, Lin Feng wrote: >> Currently get_user_pages() always tries to allocate pages from movable zone, >> as discussed in thread https://lkml.org/lkml/2012/11/29/69, in some case >> users >>

Re: [PATCH v5 3/3] ARM: mm: use static_vm for managing static mapped areas

2013-02-04 Thread Nicolas Pitre
On Tue, 5 Feb 2013, Joonsoo Kim wrote: > A static mapped area is ARM-specific, so it is better not to use > generic vmalloc data structure, that is, vmlist and vmlist_lock > for managing static mapped area. And it causes some needless overhead and > reducing this overhead is better idea. > >

Re: [Pv-drivers] [PATCH 0/6] VSOCK for Linux upstreaming

2013-02-04 Thread Andy King
Hi Dave, > >> Instead, what I remember doing was deferring to the feedback these > >> folks received, stating that ideas that the virtio people had > >> mentioned should be considered instead. > >> > >> http://marc.info/?l=linux-netdev=135301515818462=2 > > > > I believe Andy replied to

Re: [PATCHv5,RESEND 4/8] gpu: host1x: Add debug support

2013-02-04 Thread Terje Bergström
On 04.02.2013 03:03, Thierry Reding wrote: > * PGP Signed by an unknown key > > On Tue, Jan 15, 2013 at 01:44:00PM +0200, Terje Bergstrom wrote: >> diff --git a/drivers/gpu/host1x/debug.c b/drivers/gpu/host1x/debug.c > [...] >> +static pid_t host1x_debug_null_kickoff_pid; >> +unsigned int

RE: [PATCH 1/2] USB: storage: Define a new macro for USB storage match rules

2013-02-04 Thread Fangxiaozhi (Franko)
Dear Greg: OK,thank you very much. Best Regards, Franko Fang > -Original Message- > From: Greg KH [mailto:gre...@linuxfoundation.org] > Sent: Tuesday, February 05, 2013 2:39 AM > To: Fangxiaozhi (Franko) > Cc: linux-...@vger.kernel.org; linux-kernel@vger.kernel.org; Xueguiying

Re: [PATCHv5,RESEND 2/8] gpu: host1x: Add syncpoint wait and interrupts

2013-02-04 Thread Terje Bergström
On 04.02.2013 02:30, Thierry Reding wrote: > On Tue, Jan 15, 2013 at 01:43:58PM +0200, Terje Bergstrom wrote: > [...] >> diff --git a/drivers/gpu/host1x/dev.c b/drivers/gpu/host1x/dev.c > [...] >> @@ -95,7 +96,6 @@ static int host1x_probe(struct platform_device *dev) >> >> /* set common

Re: [PATCH] init: fix name of root device in /proc/mounts

2013-02-04 Thread William Hubbs
On Mon, Feb 04, 2013 at 06:54:32PM -0800, H. Peter Anvin wrote: > The difference is that it used to be customary to have a /dev/root symlink; > iirc udev created one. Devtmpfs does not (for largely valid reasons, but it > does break some userspaces.) Correct. The /dev/root symlink is not

[PATCH] mm: break circular include from linux/mmzone.h

2013-02-04 Thread liguang
linux/mmzone.h included linux/memory_hotplug.h, and linux/memory_hotplug.h also included linux/mmzone.h, so there's a bad cirlular. Signed-off-by: liguang --- drivers/hwmon/coretemp.c|2 ++ drivers/hwmon/via-cputemp.c |2 ++ include/linux/mmzone.h |1 - kernel/cpu.c

Re: [PATCH v5 2/3] ARM: ioremap: introduce an infrastructure for static mapped area

2013-02-04 Thread Nicolas Pitre
On Tue, 5 Feb 2013, Joonsoo Kim wrote: > In current implementation, we used ARM-specific flag, that is, > VM_ARM_STATIC_MAPPING, for distinguishing ARM specific static mapped area. > The purpose of static mapped area is to re-use static mapped area when > entire physical address range of the

Re: [GIT PULL] printk: Support for full dynticks mode

2013-02-04 Thread Andrew Morton
On Mon, 04 Feb 2013 21:42:02 -0500 Steven Rostedt wrote: > On Mon, 2013-02-04 at 18:09 -0800, Andrew Morton wrote: > > > I don't think so. Conceptually printk() should be "inner" to the > > scheduler and shouldn't call into sched things at all. The (afaik > > sole) exception to that was the

[PATCH] PCI: update device mps when doing pci hotplug

2013-02-04 Thread Yijing Wang
Currently we dont't update device's mps vaule when doing pci device hot-add. The hot-added device's mps will be set to default value (128B). But the upstream port device's mps may be larger than 128B which was set by firmware during system bootup. In this case the new added device may not work

RE: [PATCH 4/4] iommu: Add domain window handling functions

2013-02-04 Thread Yoder Stuart-B08248
> -Original Message- > From: Wood Scott-B07421 > Sent: Monday, February 04, 2013 5:36 PM > To: Joerg Roedel > Cc: Sethi Varun-B16395; io...@lists.linux-foundation.org; > linux-kernel@vger.kernel.org; Wood Scott- > B07421; Yoder Stuart-B08248 > Subject: Re: [PATCH 4/4] iommu: Add domain

Re: [PATCH] ia64/mm: fix a bad_page bug when crash kernel booting

2013-02-04 Thread Xishi Qiu
On 2013/2/5 0:32, Matt Fleming wrote: > On Tue, 2013-01-29 at 11:52 +0800, Xishi Qiu wrote: >> On ia64 platform, I set "crashkernel=1024M-:600M", and dmesg shows 128M-728M >> memory is reserved for crash kernel. Then "echo c > /proc/sysrq-trigger" to >> test kdump. >> >> When crash kernel

Re: [ 105/128] efi: Make efi_enabled a function to query EFI facilities

2013-02-04 Thread Ben Hutchings
On Mon, 2013-02-04 at 16:44 +, Matt Fleming wrote: > On Sun, 2013-02-03 at 16:15 +0100, Ben Hutchings wrote: > > As you can see this needed quite a lot of work to backport, and I > > haven't been able to test it yet. So I would particularly appreciate > > careful review of this. > >

Re: [PATCH 1/4] eventfd: introduce eventfd_signal_hangup()

2013-02-04 Thread Li Zefan
On 2013/2/4 18:15, Kirill A. Shutemov wrote: > On Sat, Feb 02, 2013 at 05:58:58PM +0200, Kirill A. Shutemov wrote: >> On Sat, Feb 02, 2013 at 02:50:44PM +0800, Li Zefan wrote: >>> When an eventfd is closed, a wakeup with POLLHUP will be issued, >>> but cgroup wants to issue wakeup explicitly, so

Re: [PATCH] sched/rt: Decrease number of calls of push_rt_task() in push_rt_tasks()

2013-02-04 Thread Honghui Zhang
On 2013/2/1 5:57, Kirill Tkhai wrote: > > > 31.01.2013, 20:08, "Steven Rostedt" : >> On Mon, 2013-01-28 at 03:46 +0400, Kirill Tkhai wrote: >> >>> The patch aims to decrease the number of calls of push_rt_task() >>> in push_rt_tasks(). >>> >>> It's not necessary to push more than

Re: [PATCHv5,RESEND 1/8] gpu: host1x: Add host1x driver

2013-02-04 Thread Terje Bergström
On 04.02.2013 01:09, Thierry Reding wrote: > On Tue, Jan 15, 2013 at 01:43:57PM +0200, Terje Bergstrom wrote: >> Add host1x, the driver for host1x and its client unit 2D. > > Maybe this could be a bit more verbose. Perhaps describe what host1x is. Sure. I could just steal the paragraph from

Re: [GIT PULL] printk: Support for full dynticks mode

2013-02-04 Thread Steven Rostedt
On Mon, 2013-02-04 at 22:24 -0500, Steven Rostedt wrote: > The reason to avoid the wake up of klogd() is that it also grabs the > wait queue spinlock every time it's called. up() is fast when there's no > waiters, but wake_up_interruptible() is not so fast. I take that back. Seems up() takes the

Re: [GIT PULL] printk: Support for full dynticks mode

2013-02-04 Thread Steven Rostedt
On Tue, 2013-02-05 at 04:19 +0100, Frederic Weisbecker wrote: > 2013/2/5 Steven Rostedt : > > On Mon, 2013-02-04 at 18:09 -0800, Andrew Morton wrote: > > > >> Maybe there were other deadlock scenarios, dunno. That knowledge > >> appears to be disappearing into the mists of time :( > > > >

[PATCH 1/2] mtd: torturetest: rewrite the erase-write-verify process into one block unit.

2013-02-04 Thread Huang Shijie
Rewrite the torture cycle, do the erase-write-verify process in one block unit, not in several blocks unit. This patch makes preparations for adding the rand data pattern support. Signed-off-by: Huang Shijie --- drivers/mtd/tests/mtd_torturetest.c | 29 +++-- 1 files

[PATCH 2/2] mtd: torturetest: add the support for random data pattern

2013-02-04 Thread Huang Shijie
Add a new module parameter 'pattern'. If it is set to zero, we will use the 55/AA pattern to torture the nand blocks; if it is set to a non-zero value, we will use the random data pattern. Signed-off-by: Huang Shijie --- drivers/mtd/tests/mtd_torturetest.c | 72

Re: [GIT PULL] printk: Support for full dynticks mode

2013-02-04 Thread Frederic Weisbecker
2013/2/5 Steven Rostedt : > On Mon, 2013-02-04 at 18:09 -0800, Andrew Morton wrote: > >> Maybe there were other deadlock scenarios, dunno. That knowledge >> appears to be disappearing into the mists of time :( > > Discussing this on IRC with Frederic, he brought up that the > up(_sem) can do a

Re: [GIT PULL] printk: Support for full dynticks mode

2013-02-04 Thread Steven Rostedt
On Mon, 2013-02-04 at 18:09 -0800, Andrew Morton wrote: > Maybe there were other deadlock scenarios, dunno. That knowledge > appears to be disappearing into the mists of time :( Discussing this on IRC with Frederic, he brought up that the up(_sem) can do a wake_up as well. I guess that's the

Re: [PATCH 1/2] mm: hotplug: implement non-movable version of get_user_pages() called get_user_pages_non_movable()

2013-02-04 Thread Lin Feng
Hi Andrew, On 02/05/2013 08:06 AM, Andrew Morton wrote: > > melreadthis > > On Mon, 4 Feb 2013 18:04:07 +0800 > Lin Feng wrote: > >> get_user_pages() always tries to allocate pages from movable zone, which is >> not >> reliable to memory hotremove framework in some case. >> >> This patch

Re: [PATCH] netfilter: fix missing dependencies for NETFILTER_XT_MATCH_CONNLABEL

2013-02-04 Thread Pablo Neira Ayuso
On Sun, Feb 03, 2013 at 08:04:35AM -0800, Randy Dunlap wrote: > On 02/03/13 03:24, Florian Westphal wrote: > > It was possible to set > > NF_CONNTRACK=n > > NF_CONNTRACK_LABELS=y > > > > via NETFILTER_XT_MATCH_CONNLABEL=y: > > > > warning: (NETFILTER_XT_MATCH_CONNLABEL) selects

Re: [PATCH] init: fix name of root device in /proc/mounts

2013-02-04 Thread H. Peter Anvin
The difference is that it used to be customary to have a /dev/root symlink; iirc udev created one. Devtmpfs does not (for largely valid reasons, but it does break some userspaces.) Rob Landley wrote: >On 01/31/2013 05:22:09 PM, H. Peter Anvin wrote: >> On 01/31/2013 02:51 PM, William Hubbs

Re: [PATCH 1/3] MMC: rtsx: remove driving adjustment

2013-02-04 Thread Roger Tseng
Hi Dan, Correct. I will prevent this kind of breaking in the future. However, after our analysis the breaking of patch 1/3 and 2/3 should not fail old devices. And since Samuel has applied 2/3 and 3/3, it might be better for Chris to apply patch 1/3 and let all this things appear in kernel

[PATCH] net: core: Remove unnecessary alloc/OOM messages

2013-02-04 Thread Joe Perches
alloc failures already get standardized OOM messages and a dump_stack. Signed-off-by: Joe Perches --- net/core/dev.c| 14 +- net/core/netprio_cgroup.c | 4 +--- 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/net/core/dev.c b/net/core/dev.c index

  1   2   3   4   5   6   7   8   9   10   >