linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* re: Linux 3.5-rc7
@ 2012-09-30 12:54 Uwaysi Bin Kareem
  2012-10-05 21:29 ` Valdis.Kletnieks
  0 siblings, 1 reply; 10+ messages in thread
From: Uwaysi Bin Kareem @ 2012-09-30 12:54 UTC (permalink / raw)
  To: linux-kernel

Compiled 3.6-rc7, with a hz timer of 3956 for a "natural" psychovisual  
profile jitter level in OpenGL, and a shaved config for minimal jitter.

Also changed the 10ms filter in fair.c to 1. And I suggest the whole  
filter to be removed. https://lkml.org/lkml/2012/9/30/78

There is very few clicks with ALSA + onboard soundcard at 0.3ms lantecy  
now, without RT-threads.

Meaning os-jitter is near optimal for audio/video. I think few care once  
it is below 0.2ms.

Ofcourse one always wants lower, but at that point, things feel like  
hardware, and becomes unnoticable to the user.

Peace Be With You.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Linux 3.5-rc7
  2012-09-30 12:54 Linux 3.5-rc7 Uwaysi Bin Kareem
@ 2012-10-05 21:29 ` Valdis.Kletnieks
  2012-10-06 13:12   ` Uwaysi Bin Kareem
  0 siblings, 1 reply; 10+ messages in thread
From: Valdis.Kletnieks @ 2012-10-05 21:29 UTC (permalink / raw)
  To: Uwaysi Bin Kareem; +Cc: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 474 bytes --]

On Sun, 30 Sep 2012 14:54:07 +0200, Uwaysi Bin Kareem said:
> Compiled 3.6-rc7, with a hz timer of 3956 for a "natural" psychovisual
> profile jitter level in OpenGL, and a shaved config for minimal jitter.

I'll bite - how did you measure the difference between 3956 and 4000?

The other stuff in your note sounds sane, but I'm having a hard time
believing that 3956 was arrived at in any sort of systematic or measured
way - it smells like cargo cult programming to me...

[-- Attachment #2: Type: application/pgp-signature, Size: 865 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Linux 3.5-rc7
  2012-10-05 21:29 ` Valdis.Kletnieks
@ 2012-10-06 13:12   ` Uwaysi Bin Kareem
  0 siblings, 0 replies; 10+ messages in thread
From: Uwaysi Bin Kareem @ 2012-10-06 13:12 UTC (permalink / raw)
  To: Valdis.Kletnieks; +Cc: linux-kernel

On Fri, 05 Oct 2012 23:29:23 +0200, <Valdis.Kletnieks@vt.edu> wrote:

> On Sun, 30 Sep 2012 14:54:07 +0200, Uwaysi Bin Kareem said:
>> Compiled 3.6-rc7, with a hz timer of 3956 for a "natural" psychovisual
>> profile jitter level in OpenGL, and a shaved config for minimal jitter.
>
> I'll bite - how did you measure the difference between 3956 and 4000?
>
> The other stuff in your note sounds sane, but I'm having a hard time
> believing that 3956 was arrived at in any sort of systematic or measured
> way - it smells like cargo cult programming to me...

Well, you might not like the answer. It is based on purification of the  
senses by meditation. You can read about it here.  
http://www.youtube.com/watch?v=Cz8fCnMBnuc&feature=related

And then in a pure state, simply tuning the hz, to ones liking, trying to  
find a "natural value", which probably corresponds with the fact that,  
natural phenomna such as wind, temperature, influence similar phenomena to  
"jitter". Also based on 10 years of work with DSP ;)

Don`t worry about the 3956 timer anymore though, I use 90hz now. For some  
reasons many places online state higher HZ = higher resolution, and lower  
latency. For audio and opengl this is not true. Audio still has the same  
latency at 90hz, and OpenGL performs better, with less jitter.

You can take my low-jitter kernel for a spin, here.  
http://paradoxuncreated.com/Blog/wordpress/?p=2268
Particulary note that OpenGL in doom3 is very smooth, (if you have any  
jitter try killing background daemons). Audio latency is stable at 1ms,  
and few clicks at 0.3. I have also run it at 0.3ms stable latency with  
realtime threads, with a firewire audio card. Simple HDA soundchip seems  
to perform poorer for some reason. One would think that an onboard  
soundchip would have less potential latency.

The whole system runs well.

I am also using this info for thoughts on cfs. If granularity should be  
tuned up for more processes running, maybe related granuarlity to  
processes, for best resource usage. Currently also I think the 10ms filter  
could be replaced with a simpler hold logic, so you don`t have to update  
it more that neccesary, or compute share based on filters impulse response.

Just some small observations.

Peace Be With You.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Linux 3.5-rc7
  2012-07-17 19:07 Paweł Sikora
@ 2012-07-17 19:40 ` Borislav Petkov
  0 siblings, 0 replies; 10+ messages in thread
From: Borislav Petkov @ 2012-07-17 19:40 UTC (permalink / raw)
  To: Paweł Sikora; +Cc: linux-kernel, torvalds

On Tue, Jul 17, 2012 at 09:07:40PM +0200, Paweł Sikora wrote:
> Hi,
> 
> the modular kernel fails to build:
> 
> (...)
>   Building modules, stage 2.
>   MODPOST 3571 modules
> 
> WARNING: drivers/scsi/fcoe/libfcoe.o(.init.text+0x1f): Section mismatch in reference from the function init_module() to the function .exit.text:fcoe_transport_exit()
> The function __init init_module() references
> a function __exit fcoe_transport_exit().
> This is often seen when error handling in the init function
> uses functionality in the exit path.
> The fix is often to remove the __exit annotation of
> fcoe_transport_exit() so it may be used outside an exit section.
> 
> WARNING: drivers/staging/ipack/bridges/tpci200.o(.data+0x28): Section mismatch in reference from the variable tpci200_pci_drv to the function .devexit.text:tpci200_pci_remove()
> The variable tpci200_pci_drv references
> the function __devexit tpci200_pci_remove()
> If the reference is valid then annotate the
> variable with __exit* (see linux/init.h) or name the variable:
> *driver, *_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console

Those are section mismatch warnings, see the help to
CONFIG_DEBUG_SECTION_MISMATCH.

-- 
Regards/Gruss,
Boris.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Linux 3.5-rc7
@ 2012-07-17 19:07 Paweł Sikora
  2012-07-17 19:40 ` Borislav Petkov
  0 siblings, 1 reply; 10+ messages in thread
From: Paweł Sikora @ 2012-07-17 19:07 UTC (permalink / raw)
  To: linux-kernel; +Cc: torvalds

Hi,

the modular kernel fails to build:

(...)
  Building modules, stage 2.
  MODPOST 3571 modules

WARNING: drivers/scsi/fcoe/libfcoe.o(.init.text+0x1f): Section mismatch in reference from the function init_module() to the function .exit.text:fcoe_transport_exit()
The function __init init_module() references
a function __exit fcoe_transport_exit().
This is often seen when error handling in the init function
uses functionality in the exit path.
The fix is often to remove the __exit annotation of
fcoe_transport_exit() so it may be used outside an exit section.

WARNING: drivers/staging/ipack/bridges/tpci200.o(.data+0x28): Section mismatch in reference from the variable tpci200_pci_drv to the function .devexit.text:tpci200_pci_remove()
The variable tpci200_pci_drv references
the function __devexit tpci200_pci_remove()
If the reference is valid then annotate the
variable with __exit* (see linux/init.h) or name the variable:
*driver, *_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console


BR,
Paweł.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Linux 3.5-rc7
  2012-07-16 16:37   ` Linus Torvalds
@ 2012-07-16 17:01     ` Martin Steigerwald
  0 siblings, 0 replies; 10+ messages in thread
From: Martin Steigerwald @ 2012-07-16 17:01 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel

Am Montag, 16. Juli 2012 schrieb Linus Torvalds:
> On Mon, Jul 16, 2012 at 9:28 AM, Martin Steigerwald 
<Martin@lichtvoll.de> wrote:
> > Regresses badly on resume from in-kernel hibernation. I.e. hangs with
> > some red graphics artifacts on the tty. The same artifacts appear
> > for a short time with rc6 + some commits as well, but there then
> > X.org is available again.
> 
> There's a one-liner fix for this bouncing around.
> 
> Appended is a white-space damaged cut-and-paste version of the fix, so
> you'll need to either find the original patch (search the kernel
> mailing list for "Excessive delay or hang during resume from system
> suspend due to a hrtimer commit"), or just edit in the one-liner by
> hand.
> 
> This should fix it (there's apparently a question on whether the
> "false" should be "true", but that's an independent detail, it's worth
> verifying in this form regardless).
> 
>                Linus
> ---
> diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
> index 269b1fe..3447cfa 100644
> --- a/kernel/time/timekeeping.c
> +++ b/kernel/time/timekeeping.c
> @@ -717,6 +717,7 @@ static void timekeeping_resume(void)
>         timekeeper.clock->cycle_last =
> timekeeper.clock->read(timekeeper.clock); timekeeper.ntp_error = 0;
>         timekeeping_suspended = 0;
> +       timekeeping_update(false);
>         write_sequnlock_irqrestore(&timekeeper.lock, flags);
> 
>         touch_softlockup_watchdog();

That fixes it.

Tested three cycles.

Tested-By: Martin Steigerwald <martin@lichtvoll.de>



Compiling TuxOnIce 3.5-rc7 with that patch now to verify if that fix work 
there, too. TuxOnIce is still so much faster than in-kernel-suspend ;).


I still get:

Message from syslogd@merkaba at Jul 16 18:53:53 ...
 kernel:[   42.442466] Uhhuh. NMI received for unknown reason 3c on CPU 0.

Message from syslogd@merkaba at Jul 16 18:53:53 ...
 kernel:[   42.442470] Do you have a strange power saving mode enabled?

Message from syslogd@merkaba at Jul 16 18:53:53 ...
 kernel:[   42.442472] Dazed and confused, but trying to continue

but I keep getting these since quite some time and did not take the time 
to follow up on it.

Thanks,
-- 
Martin 'Helios' Steigerwald - http://www.Lichtvoll.de
GPG: 03B0 0D6C 0040 0710 4AFA  B82F 991B EAAC A599 84C7

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Linux 3.5-rc7
  2012-07-16 16:28 ` Martin Steigerwald
@ 2012-07-16 16:37   ` Linus Torvalds
  2012-07-16 17:01     ` Martin Steigerwald
  0 siblings, 1 reply; 10+ messages in thread
From: Linus Torvalds @ 2012-07-16 16:37 UTC (permalink / raw)
  To: Martin Steigerwald; +Cc: linux-kernel

On Mon, Jul 16, 2012 at 9:28 AM, Martin Steigerwald <Martin@lichtvoll.de> wrote:
>
> Regresses badly on resume from in-kernel hibernation. I.e. hangs with some
> red graphics artifacts on the tty. The same artifacts appear for a short
> time with rc6 + some commits as well, but there then X.org is available
> again.

There's a one-liner fix for this bouncing around.

Appended is a white-space damaged cut-and-paste version of the fix, so
you'll need to either find the original patch (search the kernel
mailing list for "Excessive delay or hang during resume from system
suspend due to a hrtimer commit"), or just edit in the one-liner by
hand.

This should fix it (there's apparently a question on whether the
"false" should be "true", but that's an independent detail, it's worth
verifying in this form regardless).

               Linus
---
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
index 269b1fe..3447cfa 100644
--- a/kernel/time/timekeeping.c
+++ b/kernel/time/timekeeping.c
@@ -717,6 +717,7 @@ static void timekeeping_resume(void)
        timekeeper.clock->cycle_last = timekeeper.clock->read(timekeeper.clock);
        timekeeper.ntp_error = 0;
        timekeeping_suspended = 0;
+       timekeeping_update(false);
        write_sequnlock_irqrestore(&timekeeper.lock, flags);

        touch_softlockup_watchdog();

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: Linux 3.5-rc7
  2012-07-15  0:59 Linus Torvalds
  2012-07-16 14:36 ` Alan Cox
@ 2012-07-16 16:28 ` Martin Steigerwald
  2012-07-16 16:37   ` Linus Torvalds
  1 sibling, 1 reply; 10+ messages in thread
From: Martin Steigerwald @ 2012-07-16 16:28 UTC (permalink / raw)
  To: linux-kernel; +Cc: Linus Torvalds

Am Sonntag, 15. Juli 2012 schrieb Linus Torvalds:
> Hey guys,

Hi Linus,

> remember how things have been stabilizing and slowing down,
> and all the kernel developers were off on summer vacation?
> 
> Yeah, we need to talk about that. Because I last week I thought that
> making an -rc7 was not necessarily realy required, except perhaps
> mainly to check the late printk changes. But then today and yesterday,
> I got a ton of small pull requests, and now I find myself releasing an
> -rc7 that is actually bigger than rc6 was.
> 
> Not cool, guys. Not cool.
> 
> Now, admittedly, most of this is pretty small. The loadavg calculation
> fix patch is pretty big, but quite a lot of that is added comments
> (*big* added comments). . But there's Andrew's patch-bomb, there's
> media fixes, there's random SOC fixes, powerpc fixes, USB, sound, you
> name it.
> 
> Ok, so it's still not *huge*, but it's bigger than -rc6 was. I had
> hoped for less.

Regresses badly on resume from in-kernel hibernation. I.e. hangs with some 
red graphics artifacts on the tty. The same artifacts appear for a short 
time with rc6 + some commits as well, but there then X.org is available 
again.

2437fccfbfc83bcb868ccc7fdfe2b5310bf07835 – thats rc6 + some commits – 
works, while exactly rc7 does not.

No bisection tried so far. Maybe tomorrow. It shouldn´t be that many 
attempts and kernel compiles are fast on the ThinkPad T520 with Intel i5 
Sandybridge + integrated graphics – no NVidia – + Intel SSD 320 where this 
happens. No other machines tested so far.

Kernel configuration available if desired.

Thanks,
-- 
Martin 'Helios' Steigerwald - http://www.Lichtvoll.de
GPG: 03B0 0D6C 0040 0710 4AFA  B82F 991B EAAC A599 84C7

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Linux 3.5-rc7
  2012-07-15  0:59 Linus Torvalds
@ 2012-07-16 14:36 ` Alan Cox
  2012-07-16 16:28 ` Martin Steigerwald
  1 sibling, 0 replies; 10+ messages in thread
From: Alan Cox @ 2012-07-16 14:36 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux Kernel Mailing List

> But go forth and test. Make sure it's all good. Because I really wish
> I won't have to do an -rc8.

Crahses and burns on Intel Poulsbo systems with a blank screen.
Fortunately I know why - your tree is short the patch for it that went to
Dave some time before -rc7. I'm just testing that v -rc7 now on the psb
boxes.

More strangely I also now get no backlight on one of the other
boxes despite it passing testing in previous -rc releases. I'm digging
into that but I do have an apparent workaround which just disables
backlight support as before on the relevant chip.

Alan

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Linux 3.5-rc7
@ 2012-07-15  0:59 Linus Torvalds
  2012-07-16 14:36 ` Alan Cox
  2012-07-16 16:28 ` Martin Steigerwald
  0 siblings, 2 replies; 10+ messages in thread
From: Linus Torvalds @ 2012-07-15  0:59 UTC (permalink / raw)
  To: Linux Kernel Mailing List

Hey guys, remember how things have been stabilizing and slowing down,
and all the kernel developers were off on summer vacation?

Yeah, we need to talk about that. Because I last week I thought that
making an -rc7 was not necessarily realy required, except perhaps
mainly to check the late printk changes. But then today and yesterday,
I got a ton of small pull requests, and now I find myself releasing an
-rc7 that is actually bigger than rc6 was.

Not cool, guys. Not cool.

Now, admittedly, most of this is pretty small. The loadavg calculation
fix patch is pretty big, but quite a lot of that is added comments
(*big* added comments). . But there's Andrew's patch-bomb, there's
media fixes, there's random SOC fixes, powerpc fixes, USB, sound, you
name it.

Ok, so it's still not *huge*, but it's bigger than -rc6 was. I had
hoped for less.

But go forth and test. Make sure it's all good. Because I really wish
I won't have to do an -rc8.

                  Linus

---
Alan Cox (1):
      xtensa: fix incorrect memset

Alan Stern (1):
      PCI: EHCI: fix crash during suspend on ASUS computers

Alessandro Rubini (1):
      gpio-sta2x11: don't use pdata if null

Alex Williamson (1):
      KVM: Fix device assignment threaded irq handler

Anton Blanchard (3):
      [media] cx23885: Silence unknown command warnings
      [media] winbond-cir: Fix txandrx module info
      [media] winbond-cir: Initialise timeout, driver_type and allowed_protos

Axel Lin (1):
      mfd: Add terminating entry for i2c_device_id palmas table

Benjamin Herrenschmidt (5):
      powerpc: More fixes for lazy IRQ vs. idle
      powerpc: Fix build of some debug irq code
      powerpc/numa: Avoid stupid uninitialized warning from gcc
      tty/hvc_opal: Fix debug function name
      powerpc/kvm: Fix "PR" KVM implementation of H_CEDE

Benoît Thébaudeau (1):
      drivers/rtc/rtc-mxc.c: fix irq enabled interrupts warning

Bjørn Mork (2):
      USB: option: add ZTE MF60
      USB: cdc-wdm: fix lockup on error in wdm_read

Bob Liu (1):
      fs: ramfs: file-nommu: add SetPageUptodate()

Bob Moore (1):
      ACPICA: Fix possible fault in return package object repair code

Chris Metcalf (1):
      arch/tile: big-endian: properly bswap instruction bundles when backtracing

Christian Dietrich (1):
      gpio/msm_v1: CONFIG_GPIO_MSM_V1 is only available on three SoCs

Corey Minyard (1):
      SH: Convert out[bwl] macros to inline functions

Dan Carpenter (3):
      dma-debug: debugfs_create_bool() takes a u32 pointer
      iommu/amd: fix type bug in flush code
      sgi-xp: nested calls to spin_lock_irqsave()

Dan Williams (1):
      [SCSI] libsas: fix taskfile corruption in sas_ata_qc_fill_rtf

Daniel Mack (1):
      ALSA: snd-usb: move calls to usb_set_interface

Dave Jones (1):
      Remove easily user-triggerable BUG from generic_setlease

David Ahern (3):
      perf script: Fix format regression due to libtraceevent merge
      perf kvm: Fix regression with guest machine creation
      perf kvm: Fix segfault with report and mixed guestmount use

David Dillow (1):
      [media] cx231xx: don't DMA to random addresses

David Howells (1):
      MN10300: Fix a missing semicolon

David Rientjes (1):
      mm, thp: abort compaction if migration page cannot be charged to memcg

Devendra Naga (1):
      drivers/rtc/rtc-spear.c: fix use-after-free in spear_rtc_remove()

Devin Heitmueller (6):
      [media] cx25840: fix regression in HVR-1800 analog support
      [media] cx25840: fix regression in analog support hue/saturation controls
      [media] cx25840: fix regression in HVR-1800 analog audio
      [media] cx25840: fix vsrc/hsrc usage on cx23888 designs
      [media] cx23885: make analog support work for HVR_1250 (cx23885 variant)
      [media] cx23885: add support for HVR-1255 analog (cx23888 variant)

Eddie Wai (1):
      [SCSI] bnx2i: Removed the reference to the netdev->base_addr

Fengguang Wu (1):
      [media] pms: fix build error in pms_probe()

Gaosen Zhang (1):
      USB: option: Add MEDIATEK product ids

Geert Uytterhoeven (11):
      mn10300: move setup_jiffies_interrupt() to cevt-mn10300.c
      mn10300: remove duplicate definition of PTRACE_O_TRACESYSGOOD
      mn10300: kernel/internal.h needs <linux/irqreturn.h>
      mn10300: kernel/traps.c needs <linux/export.h>
      mn10300: mm/dma-alloc.c needs <linux/export.h>
      mn10300: use "#elif defined(CONFIG_*)" instead of "#elif CONFIG_*"
      h8300/pgtable: add missing #include <asm-generic/pgtable.h>
      h8300/signal: fix typo "statis"
      h8300/time: add missing #include <asm/irq_regs.h>
      h8300/uaccess: remove assignment to __gu_val in unhandled case
of get_user()
      h8300/uaccess: add mising __clear_user()

Graeme Gregory (2):
      mfd: Fix palmas regulator pdata missing
      mfd: Add missing hunk to change palmas irq to clear on read

Grazvydas Ignotas (1):
      gpio/omap: fix irq loss while in idle with debounce on

Guennadi Liakhovetski (1):
      mmc: cd-gpio: pass IRQF_ONESHOT to request_threaded_irq()

Hans de Goede (1):
      gspca_sn9c20x: Fix NULL pointer dereference

Henrik Rydberg (1):
      Input: bcm5974 - Add support for 2012 MacBook Pro Retina

Herton Ronaldo Krzesinski (1):
      mtd: nandsim: don't open code a do_div helper

Hiroshi DOYU (1):
      iommu/tegra: smmu: Fix unsleepable memory allocation

Hugh Dickins (3):
      tmpfs: revert SEEK_DATA and SEEK_HOLE
      shmem: fix negative rss in memcg memory.stat
      shmem: cleanup shmem_add_to_page_cache

Ilia Katsnelson (1):
      Input: xpad - add signature for Razer Onza Tournament Edition

Javier Martin (1):
      media: mx2_camera: Fix mbus format handling

Jean Delvare (1):
      hwmon: (it87) Preserve configuration register bits on init

Jeff Moyer (1):
      block: fix infinite loop in __getblk_slow

Jerry Snitselaar (1):
      gpio/gpio-tps65910: gpio_chip.of_node referenced without
CONFIG_OF_GPIO defined

Jiang Liu (1):
      memory hotplug: fix invalid memory access caused by stale kswapd pointer

Joerg Roedel (1):
      iommu/amd: Initialize dma_ops for hotplug and sriov devices

Johan Hovold (1):
      USB: metro-usb: fix tty_flip_buffer_push use

John Stultz (3):
      hrtimer: Provide clock_was_set_delayed()
      timekeeping: Fix leapsecond triggered load spike issue
      hrtimer: Update hrtimer base offsets each hrtimer_interrupt

Jon Hunter (1):
      gpio/omap: fix invalid context restore of gpio bank-0

Jonathan Nieder (1):
      ACPI / PM: Leave Bus Master Arbitration enabled for suspend/resume

Kamil Debski (1):
      [media] s5p-mfc: Fixed setup of custom controls in decoder and encoder

Kay Sievers (6):
      kmsg: escape the backslash character while exporting data
      kmsg: add the facility number to the syslog prefix
      kmsg: properly handle concurrent non-blocking read() from /proc/kmsg
      kmsg: make sure all messages reach a newly registered boot console
      kmsg: /proc/kmsg - support reading of partial log records
      kmsg: merge continuation records while printing

Kevin Hilman (3):
      ARM: OMAP2+: omap2plus_defconfig: EHCI driver is not stable, disable it
      MAINTAINERS: add OMAP CPUfreq driver to OMAP Power Management section
      drivers/rtc/rtc-twl.c: fix threaded IRQ to use IRQF_ONESHOT

Konstantin Khlebnikov (1):
      c/r: prctl: less paranoid prctl_set_mm_exe_file()

Laurent Pinchart (2):
      [media] omap3isp: preview: Fix output size computation depending
on input format
      [media] omap3isp: preview: Fix contrast and brightness handling

Laxman Dewangan (2):
      gpio: fix bits conflict for gpio flags
      gpio: tps65910: initialize of_node of gpio_chip

Lee Jones (5):
      of: address: Don't fail a lookup just because a node has no reg property
      ARM: ux500: Fix build errors/warnings when MACH_UX500_DT is not set
      ARM: ux500: Over-ride the DT device naming scheme for pinctrl
      drivers/rtc/rtc-ab8500.c: use IRQF_ONESHOT when requesting a threaded IRQ
      drivers/rtc/rtc-ab8500.c: ensure correct probing of the AB8500
RTC when Device Tree is enabled

Linus Torvalds (2):
      Revert "of: match by compatible property first"
      Linux 3.5-rc7

Luis Henriques (1):
      ocfs2: fix NULL pointer dereference in __ocfs2_change_file_space()

Magnus Damm (1):
      ARM: shmobile: fix platsmp.c build when ARCH_SH73A0=n

Marek Szyprowski (2):
      ARM: EXYNOS: read initial state of power domain from hw registers
      ARM: EXYNOS: register devices in 'need_restore' state for pm_domains

Mark Brown (1):
      gpiolib: wm8994: Pay attention to the value set when enabling as output

Mark Rustad (1):
      [SCSI] Fix NULL dereferences in scsi_cmd_to_driver

Mauro Carvalho Chehab (2):
      [media] smiapp-core: fix compilation build error
      [media] em28xx: fix em28xx-rc load

Michael S. Tsirkin (1):
      virtio-balloon: fix add/get API use

Mike Dunn (1):
      mtd: ABI documentation: clarification of bitflip_threshold

Namhyung Kim (1):
      MAINTAINERS/sched: Update scheduler file pattern

NeilBrown (1):
      md/raid1: fix use-after-free bug in RAID1 data-check code.

Ohad Ben-Cohen (4):
      remoteproc/omap: fix randconfig unmet direct dependencies
      remoteproc: fix missing CONFIG_FW_LOADER configurations
      rpmsg: avoid premature deallocation of endpoints
      rpmsg: make sure inflight messages don't invoke just-removed callbacks

Paul Bolle (1):
      mfd: Delete ab5500-core.h

Paul E. McKenney (1):
      Revert "rcu: Move PREEMPT_RCU preemption to switch_to() invocation"

Paul Mundt (1):
      sh: Fix up se7721 GPIOLIB=y build warnings.

Paul Walmsley (1):
      ARM: OMAP2+: hwmod code/clockdomain data: fix 32K sync timer

Peter Ujfalusi (1):
      mfd: Update twl6040 Kconfig to avoid build breakage

Peter Zijlstra (1):
      sched/nohz: Rewrite and fix load-avg computation -- again

Philippe Rétornaz (2):
      mfd: Fix mc13xxx SPI regmap
      mfd: mc13xxx workaround SPI hardware bug on i.Mx

Randy Dunlap (1):
      [media] media: pms.c needs linux/slab.h

Roland Stigge (1):
      mips: pci-lantiq: Fix check for valid gpio

Russ Dill (1):
      mfd: USB: Fix the omap-usb EHCI ULPI PHY reset fix issues.

Ryan Bourgeois (1):
      HID: add support for 2012 MacBook Pro Retina

Sachin Kamat (2):
      [media] s5p-fimc: Fix compiler warning in fimc-lite.c
      [media] s5p-fimc: Stop media entity pipeline if
fimc_pipeline_validate fails

Sakari Ailus (1):
      [media] s5p-fimc: media_entity_pipeline_start() may fail

Salman Qazi (1):
      sched: Fix fork() error path to not crash

Santosh Nayak (1):
      [media] dvb-core: Release semaphore on error path dvb_register_device()

Sarah Sharp (1):
      xhci: Fix hang on back-to-back Set TR Deq Ptr commands.

Sascha Hauer (2):
      mtd: mxc_nand: use 32bit copy functions
      mtd: gpmi-nand: fix read page when reading to vmalloced area

Shinya Kuribayashi (1):
      hwspinlock/core: use global ID to register hwspinlocks on multiple devices

Shuah Khan (1):
      iommu/amd: Fix missing iommu_shutdown initialization in passthrough mode

Silva Paulo (1):
      blk: fix wrong idr_pre_get() error check in loop.c

Stanislaw Ledwon (1):
      usb: Add support for root hub port status CAS

Stephen Boyd (1):
      regulator: Fix recursive mutex lockdep warning

Stephen Warren (1):
      gpio: export devm_gpio_request_one

Steven J. Magnani (1):
      fat: fix non-atomic NFS i_pos read

Sylwester Nawrocki (12):
      [media] s5p-fimc: Fix bug in capture node open()
      [media] s5p-fimc: Don't create multiple active links to same sink entity
      [media] s5p-fimc: Honour sizeimage in VIDIOC_S_FMT
      [media] s5p-fimc: Remove superfluous checks for buffer type
      [media] s5p-fimc: Prevent lock-up in multiple sensor systems
      [media] s5p-fimc: Fix fimc-lite system wide suspend procedure
      [media] s5p-fimc: Shorten pixel formats description
      [media] s5p-fimc: Update to the control handler lock changes
      [media] s5p-fimc: Add missing FIMC-LITE file operations locking
      [media] Revert "[media] V4L: JPEG class documentation corrections"
      ARM: S3C24XX: Correct AC97 clock control bit for S3C2440
      ARM: S3C24XX: Correct CAMIF interrupt definitions

Takashi Iwai (1):
      ALSA: usb-audio: Fix the first PCM interface assignment

Tejun Heo (2):
      Revert "cgroup: superblock can't be released with active dentries"
      cgroup: fix cgroup hierarchy umount race

Thomas Gleixner (3):
      timekeeping: Maintain ktime_t based offsets for hrtimers
      hrtimers: Move lock held region in hrtimer_interrupt()
      timekeeping: Provide hrtimer update function

Thomas Renninger (1):
      cpufreq / ACPI: Fix not loading acpi-cpufreq driver regression

Todd Poynor (1):
      ARM: SAMSUNG: fix race in s3c_adc_start for ADC

Tomas Winkler (1):
      mei: pci_resume: set IRQF_ONESHOT for msi request_threaded_irq

Tomi Valkeinen (2):
      OMAPDSS: Use PM notifiers for system suspend
      OMAPDSS: fix warnings if CONFIG_PM_RUNTIME=n

Trond Myklebust (2):
      NFS: Fix list manipulation snafus in fs/nfs/direct.c
      NFSv4: Fix an NFSv4 mount regression

Tushar Behera (1):
      ARM: SAMSUNG: Update default rate for xusbxti clock

Uwe Kleine-König (1):
      gpio/mxc: make irqs work for fsl,imx21-gpio devices

Vaibhav Nagarnaik (2):
      ring-buffer: Fix crash due to uninitialized new_pages list head
      ring-buffer: Fix accounting of entries when removing pages

Venkatraman S (1):
      mmc: core: Revert "skip card initialization if power class
selection fails"

Wen Congyang (1):
      mm/memory_hotplug.c: release memory resources if hotadd_new_pgdat() fails

Will Drewry (2):
      x86/vsyscall: allow seccomp filter in vsyscall=emulate
      vsyscall_64: add missing ifdef CONFIG_SECCOMP

Yinghai Lu (3):
      mm: sparse: fix section usemap placement calculation
      mm: sparse: fix usemap allocation above node descriptor section
      memblock: free allocated memblock_reserved_regions later

Yuri Khan (2):
      Input: xpad - handle all variations of Mad Catz Beat Pad
      Input: xpad - add Andamiro Pump It Up pad

liu chuansheng (1):
      printk: replacing the raw_spin_lock/unlock with raw_spin_lock/unlock_irq

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2012-10-06 13:12 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-30 12:54 Linux 3.5-rc7 Uwaysi Bin Kareem
2012-10-05 21:29 ` Valdis.Kletnieks
2012-10-06 13:12   ` Uwaysi Bin Kareem
  -- strict thread matches above, loose matches on Subject: below --
2012-07-17 19:07 Paweł Sikora
2012-07-17 19:40 ` Borislav Petkov
2012-07-15  0:59 Linus Torvalds
2012-07-16 14:36 ` Alan Cox
2012-07-16 16:28 ` Martin Steigerwald
2012-07-16 16:37   ` Linus Torvalds
2012-07-16 17:01     ` Martin Steigerwald

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).