History log of /openbmc/linux/include/asm-generic/percpu.h (Results 226 – 250 of 480)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 3d8a1a6a 13-Oct-2010 Ingo Molnar <mingo@elte.hu>

Merge branch 'amd-iommu/2.6.37' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu into core/iommu


# 4783f393 13-Oct-2010 Benjamin Herrenschmidt <benh@kernel.crashing.org>

Merge remote branch 'kumar/merge' into next


# 37eca0d6 12-Oct-2010 Thomas Gleixner <tglx@linutronix.de>

Merge branch 'linus' into core/locking

Reason: Pull in the semaphore related changes

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>


# ad0f7cfa 11-Oct-2010 Robert Richter <robert.richter@amd.com>

Merge branch 'oprofile/urgent' (early part) into oprofile/perf


# 153db80f 08-Oct-2010 Ingo Molnar <mingo@elte.hu>

Merge commit 'v2.6.36-rc7' into core/memblock

Merge reason: Update from -rc3 to -rc7.

Signed-off-by: Ingo Molnar <mingo@elte.hu>


# d4f8f217 07-Oct-2010 Ingo Molnar <mingo@elte.hu>

Merge branch 'rcu/urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu into core/rcu


Revision tags: v2.6.36-rc7
# ef70fcc0 01-Oct-2010 Robert Richter <robert.richter@amd.com>

Merge branch 'oprofile/urgent' into oprofile/core

Conflicts:
arch/arm/oprofile/common.c

Signed-off-by: Robert Richter <robert.richter@amd.com>


Revision tags: v2.6.36-rc6
# 73e6d6c6 24-Sep-2010 Jiri Kosina <jkosina@suse.cz>

Merge branch 'master' into upstream


# 4a445f29 24-Sep-2010 Dave Airlie <airlied@redhat.com>

Merge remote branch 'origin/master' of /home/airlied/kernel//linux-2.6 into drm-core-next


# cf84fd96 21-Sep-2010 Ingo Molnar <mingo@elte.hu>

Merge commit 'v2.6.36-rc5' into sched/core

Merge reason: Pick up the latest fixes in -rc5.

Signed-off-by: Ingo Molnar <mingo@elte.hu>


# e9e5f8e8 21-Sep-2010 Chris Wilson <chris@chris-wilson.co.uk>

Merge branch 'drm-intel-fixes' into HEAD

Conflicts:
drivers/char/agp/intel-agp.c
drivers/gpu/drm/i915/intel_crt.c


Revision tags: v2.6.36-rc5
# c88739b3 19-Sep-2010 J. Bruce Fields <bfields@redhat.com>

Merge remote branch 'trond/bugfixes' into for-2.6.37

Without some client-side fixes, server testing is currently difficult.


# c91925db 16-Sep-2010 Takashi Iwai <tiwai@suse.de>

Merge branch 'fix/hda' into topic/hda


# 3aabae7d 15-Sep-2010 Ingo Molnar <mingo@elte.hu>

Merge branch 'tip/perf/core' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-trace into perf/core


# f3fbba6e 14-Sep-2010 Takashi Iwai <tiwai@suse.de>

Merge branch 'fix/misc' into topic/misc


# 9277bf4b 12-Sep-2010 Chris Wilson <chris@chris-wilson.co.uk>

Merge remote branch 'linus' into drm-intel-fixes


Revision tags: v2.6.36-rc4
# 677243d7 09-Sep-2010 Brian Gerst <brgerst@gmail.com>

percpu: Optimize __get_cpu_var()

Redefine __get_cpu_var() using this_cpu_ptr() which can be
arch-optimized.

Signed-off-by: Brian Gerst <brgerst@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>


# db7829c6 09-Sep-2010 Brian Gerst <brgerst@gmail.com>

x86, percpu: Optimize this_cpu_ptr

Allow arches to implement __this_cpu_ptr, and provide an x86 version.

Before:
movq $foo, %rax
movq %gs:this_cpu_off, %rdx
addq %rdx, %rax

After:
movq $foo, %

x86, percpu: Optimize this_cpu_ptr

Allow arches to implement __this_cpu_ptr, and provide an x86 version.

Before:
movq $foo, %rax
movq %gs:this_cpu_off, %rdx
addq %rdx, %rax

After:
movq $foo, %rax
addq %gs:this_cpu_off, %rax

The benefit is doing it in one less instruction and not clobbering
a temporary register.

tj: * Beefed up the comment a bit and renamed in-macro temp variable
to match neighboring macros.

* Folded fix for const pointer case found in linux-next.

* Fixed sparse notation.

Signed-off-by: Brian Gerst <brgerst@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>

show more ...


# e548833d 10-Sep-2010 David S. Miller <davem@davemloft.net>

Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6

Conflicts:
net/mac80211/main.c


# de9ea203 09-Sep-2010 Russell King <rmk+kernel@arm.linux.org.uk>

Merge branch 'origin'


# e199e613 09-Sep-2010 David S. Miller <davem@davemloft.net>

Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/torvalds/linux-2.6


# ce7db282 07-Sep-2010 Linus Torvalds <torvalds@linux-foundation.org>

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu:
percpu: fix a mismatch between code an

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu:
percpu: fix a mismatch between code and comment
percpu: fix a memory leak in pcpu_extend_area_map()
percpu: add __percpu notations to UP allocator
percpu: handle __percpu notations in UP accessors

show more ...


Revision tags: v2.6.36-rc3
# f632265d 26-Aug-2010 J. Bruce Fields <bfields@redhat.com>

Merge commit 'v2.6.36-rc1' into HEAD


Revision tags: v2.6.36-rc2
# 9714d315 16-Aug-2010 John W. Linville <linville@tuxdriver.com>

Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6


# e4862f2f 16-Aug-2010 Mark Brown <broonie@opensource.wolfsonmicro.com>

Merge branch 'for-2.6.36' into for-2.6.37

Fairly simple conflicts, the most serious ones are the i.MX ones which I
suspect now need another rename.

Conflicts:
arch/arm/mach-mx2/clock_imx27.c
arch

Merge branch 'for-2.6.36' into for-2.6.37

Fairly simple conflicts, the most serious ones are the i.MX ones which I
suspect now need another rename.

Conflicts:
arch/arm/mach-mx2/clock_imx27.c
arch/arm/mach-mx2/devices.c
arch/arm/mach-omap2/board-rx51-peripherals.c
arch/arm/mach-omap2/board-zoom2.c
sound/soc/fsl/mpc5200_dma.c
sound/soc/fsl/mpc5200_dma.h
sound/soc/fsl/mpc8610_hpcd.c
sound/soc/pxa/spitz.c

show more ...


12345678910>>...20