Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 144997
b: refs/heads/master
c: c653849
h: refs/heads/master
i:
  144995: 123c861
v: v3
  • Loading branch information
Linus Torvalds committed May 15, 2009
1 parent 74a8d9a commit bdd0f23
Show file tree
Hide file tree
Showing 223 changed files with 5,013 additions and 2,662 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cd17cbfda004fe5f406c01b318c6378d9895896f
refs/heads/master: c6538499814d8112c5d4d08570a7cf0758e5f8f5
26 changes: 25 additions & 1 deletion trunk/arch/alpha/include/asm/percpu.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#ifndef __ALPHA_PERCPU_H
#define __ALPHA_PERCPU_H

#include <linux/compiler.h>
#include <linux/threads.h>
#include <linux/percpu-defs.h>

/*
* Determine the real variable name from the name visible in the
Expand Down Expand Up @@ -73,6 +75,28 @@ extern unsigned long __per_cpu_offset[NR_CPUS];

#endif /* SMP */

#include <asm-generic/percpu.h>
#ifdef CONFIG_SMP
#define PER_CPU_BASE_SECTION ".data.percpu"
#else
#define PER_CPU_BASE_SECTION ".data"
#endif

#ifdef CONFIG_SMP

#ifdef MODULE
#define PER_CPU_SHARED_ALIGNED_SECTION ""
#else
#define PER_CPU_SHARED_ALIGNED_SECTION ".shared_aligned"
#endif
#define PER_CPU_FIRST_SECTION ".first"

#else

#define PER_CPU_SHARED_ALIGNED_SECTION ""
#define PER_CPU_FIRST_SECTION ""

#endif

#define PER_CPU_ATTRIBUTES

#endif /* __ALPHA_PERCPU_H */
14 changes: 7 additions & 7 deletions trunk/arch/cris/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ SRC_ARCH = $(srctree)/arch/cris
# cris object files path
OBJ_ARCH = $(objtree)/arch/cris

boot := arch/cris/$(SARCH)/boot
boot := arch/cris/boot
MACHINE := arch/cris/$(SARCH)

all: zImage
Expand All @@ -81,15 +81,15 @@ zImage Image: vmlinux
archprepare:

archclean:
$(Q)if [ -e arch/cris/$(SARCH)/boot ]; then \
$(MAKE) $(clean)=arch/cris/$(SARCH)/boot; \
$(Q)if [ -e arch/cris/boot ]; then \
$(MAKE) $(clean)=arch/cris/boot; \
fi

CLEAN_FILES += \
$(MACHINE)/boot/zImage \
$(MACHINE)/boot/compressed/decompress.bin \
$(MACHINE)/boot/compressed/piggy.gz \
$(MACHINE)/boot/rescue/rescue.bin
$(boot)/zImage \
$(boot)/compressed/decompress.bin \
$(boot)/compressed/piggy.gz \
$(boot)/rescue/rescue.bin


# MRPROPER_FILES +=
Expand Down
25 changes: 0 additions & 25 deletions trunk/arch/cris/arch-v10/boot/compressed/README

This file was deleted.

246 changes: 0 additions & 246 deletions trunk/arch/cris/arch-v10/boot/compressed/misc.c

This file was deleted.

14 changes: 11 additions & 3 deletions trunk/arch/cris/arch-v10/kernel/entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -536,10 +536,10 @@ multiple_interrupt:
movem $r13, [$sp]
push $r10 ; push orig_r10
clear.d [$sp=$sp-4] ; frametype == 0, normal frame

move.d $sp, $r10
jsr do_multiple_IRQ

jump ret_from_intr

do_sigtrap:
Expand Down Expand Up @@ -585,7 +585,7 @@ _ugdb_handle_breakpoint:
pop $r0 ; Restore r0.
ba do_sigtrap ; SIGTRAP the offending process.
pop $dccr ; Restore dccr in delay slot.

.global kernel_execve
kernel_execve:
move.d __NR_execve, $r9
Expand Down Expand Up @@ -929,6 +929,14 @@ sys_call_table:
.long sys_fallocate
.long sys_timerfd_settime /* 325 */
.long sys_timerfd_gettime
.long sys_signalfd4
.long sys_eventfd2
.long sys_epoll_create1
.long sys_dup3 /* 330 */
.long sys_pipe2
.long sys_inotify_init1
.long sys_preadv
.long sys_pwritev

/*
* NOTE!! This doesn't have to be exact - we just have
Expand Down
Loading

0 comments on commit bdd0f23

Please sign in to comment.