Skip to content

Commit

Permalink
Merge git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6
Browse files Browse the repository at this point in the history
* git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6:
  parisc: update my email address
  parisc: fix miscompilation of ip_fast_csum with gcc >= 4.3
  parisc: fix off by one in setup_sigcontext32
  parisc: export empty_zero_page
  parisc: export copy_user_page_asm
  parisc: move head.S to head.text section
  Revert "parisc: fix trivial section name warnings"
  • Loading branch information
Linus Torvalds committed Jun 13, 2008
2 parents fa8d84b + 42a5a8a commit 7775c97
Show file tree
Hide file tree
Showing 17 changed files with 30 additions and 33 deletions.
8 changes: 4 additions & 4 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ S: Maintained

AD1889 ALSA SOUND DRIVER
P: Kyle McMartin
M: kyle@parisc-linux.org
M: kyle@mcmartin.ca
P: Thibaut Varene
M: T-Bone@parisc-linux.org
W: http://wiki.parisc-linux.org/AD1889
Expand Down Expand Up @@ -1828,7 +1828,7 @@ S: Maintained

HARMONY SOUND DRIVER
P: Kyle McMartin
M: kyle@parisc-linux.org
M: kyle@mcmartin.ca
L: linux-parisc@vger.kernel.org
S: Maintained

Expand Down Expand Up @@ -3121,7 +3121,7 @@ S: Maintained

PARISC ARCHITECTURE
P: Kyle McMartin
M: kyle@parisc-linux.org
M: kyle@mcmartin.ca
P: Matthew Wilcox
M: matthew@wil.cx
P: Grant Grundler
Expand Down Expand Up @@ -4026,7 +4026,7 @@ TULIP NETWORK DRIVERS
P: Grant Grundler
M: grundler@parisc-linux.org
P: Kyle McMartin
M: kyle@parisc-linux.org
M: kyle@mcmartin.ca
L: netdev@vger.kernel.org
S: Maintained

Expand Down
3 changes: 1 addition & 2 deletions arch/parisc/hpux/gate.S
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@
#include <asm/unistd.h>
#include <asm/errno.h>
#include <linux/linkage.h>
#include <linux/init.h>

.level LEVEL
__HEAD
.text

.import hpux_call_table
.import hpux_syscall_exit,code
Expand Down
3 changes: 1 addition & 2 deletions arch/parisc/hpux/wrappers.S
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,9 @@
#include <asm/assembly.h>
#include <asm/signal.h>
#include <linux/linkage.h>
#include <linux/init.h>

.level LEVEL
__HEAD
.text

/* These should probably go in a header file somewhere.
* They are duplicated in kernel/wrappers.S
Expand Down
3 changes: 1 addition & 2 deletions arch/parisc/kernel/entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
#include <asm/thread_info.h>

#include <linux/linkage.h>
#include <linux/init.h>

#ifdef CONFIG_64BIT
.level 2.0w
Expand Down Expand Up @@ -622,7 +621,7 @@
* the static part of the kernel address space.
*/

__HEAD
.text

.align PAGE_SIZE

Expand Down
1 change: 1 addition & 0 deletions arch/parisc/kernel/head.S
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ ENTRY(boot_args)
END(boot_args)

__HEAD

.align 4
.import init_thread_union,data
.import fault_vector_20,code /* IVA parisc 2.0 32 bit */
Expand Down
3 changes: 1 addition & 2 deletions arch/parisc/kernel/hpmc.S
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
#include <asm/pdc.h>

#include <linux/linkage.h>
#include <linux/init.h>

/*
* stack for os_hpmc, the HPMC handler.
Expand Down Expand Up @@ -77,7 +76,7 @@ ENTRY(hpmc_pim_data)
.block HPMC_PIM_DATA_SIZE
END(hpmc_pim_data)

__HEAD
.text

.import intr_save, code
ENTRY(os_hpmc)
Expand Down
3 changes: 1 addition & 2 deletions arch/parisc/kernel/pacache.S
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@
#include <asm/pgtable.h>
#include <asm/cache.h>
#include <linux/linkage.h>
#include <linux/init.h>

__HEAD
.text
.align 128

ENTRY(flush_tlb_all_local)
Expand Down
3 changes: 3 additions & 0 deletions arch/parisc/kernel/parisc_ksyms.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,6 @@ EXPORT_SYMBOL($$dyncall);
EXPORT_SYMBOL(node_data);
EXPORT_SYMBOL(pfnnid_map);
#endif

/* from pacache.S -- needed for copy_page */
EXPORT_SYMBOL(copy_user_page_asm);
2 changes: 1 addition & 1 deletion arch/parisc/kernel/perf_asm.S
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
; The coprocessor only needs to be enabled when
; starting/stopping the coprocessor with the pmenb/pmdis.
;
__HEAD
.text

ENTRY(perf_intrigue_enable_perf_counters)
.proc
Expand Down
13 changes: 6 additions & 7 deletions arch/parisc/kernel/real2.S
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
#include <asm/assembly.h>

#include <linux/linkage.h>
#include <linux/init.h>

.section .bss
.export real_stack
Expand Down Expand Up @@ -40,7 +39,7 @@ save_cr_end:
/************************ 32-bit real-mode calls ***********************/
/* This can be called in both narrow and wide kernels */

__HEAD
.text

/* unsigned long real32_call_asm(unsigned int *sp,
* unsigned int *arg0p,
Expand Down Expand Up @@ -114,7 +113,7 @@ ENDPROC(real32_call_asm)
# define PUSH_CR(r, where) mfctl r, %r1 ! STREG,ma %r1, REG_SZ(where)
# define POP_CR(r, where) LDREG,mb -REG_SZ(where), %r1 ! mtctl %r1, r

__HEAD
.text
save_control_regs:
load32 PA(save_cr_space), %r28
PUSH_CR(%cr24, %r28)
Expand Down Expand Up @@ -146,7 +145,7 @@ restore_control_regs:
/* rfi_virt2real() and rfi_real2virt() could perhaps be adapted for
* more general-purpose use by the several places which need RFIs
*/
__HEAD
.text
.align 128
rfi_virt2real:
/* switch to real mode... */
Expand Down Expand Up @@ -181,7 +180,7 @@ rfi_v2r_1:
bv 0(%r2)
nop

__HEAD
.text
.align 128
rfi_real2virt:
rsm PSW_SM_I,%r0
Expand Down Expand Up @@ -219,7 +218,7 @@ rfi_r2v_1:

/************************ 64-bit real-mode calls ***********************/
/* This is only usable in wide kernels right now and will probably stay so */
__HEAD
.text
/* unsigned long real64_call_asm(unsigned long *sp,
* unsigned long *arg0p,
* unsigned long fn)
Expand Down Expand Up @@ -277,7 +276,7 @@ ENDPROC(real64_call_asm)

#endif

__HEAD
.text
/* http://lists.parisc-linux.org/hypermail/parisc-linux/10916.html
** GCC 3.3 and later has a new function in libgcc.a for
** comparing function pointers.
Expand Down
4 changes: 2 additions & 2 deletions arch/parisc/kernel/signal32.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ setup_sigcontext32(struct compat_sigcontext __user *sc, struct compat_regfile __
&sc->sc_iaoq[0], compat_reg);

/* Store upper half */
compat_reg = (compat_uint_t)(regs->gr[32] >> 32);
compat_reg = (compat_uint_t)(regs->gr[31] >> 32);
err |= __put_user(compat_reg, &rf->rf_iaoq[0]);
DBG(2,"setup_sigcontext32: upper half iaoq[0] = %#x\n", compat_reg);

Expand All @@ -299,7 +299,7 @@ setup_sigcontext32(struct compat_sigcontext __user *sc, struct compat_regfile __
DBG(2,"setup_sigcontext32: sc->sc_iaoq[1] = %p <= %#x\n",
&sc->sc_iaoq[1], compat_reg);
/* Store upper half */
compat_reg = (compat_uint_t)((regs->gr[32]+4) >> 32);
compat_reg = (compat_uint_t)((regs->gr[31]+4) >> 32);
err |= __put_user(compat_reg, &rf->rf_iaoq[1]);
DBG(2,"setup_sigcontext32: upper half iaoq[1] = %#x\n", compat_reg);

Expand Down
5 changes: 2 additions & 3 deletions arch/parisc/kernel/syscall.S
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
#include <asm/processor.h>

#include <linux/linkage.h>
#include <linux/init.h>

/* We fill the empty parts of the gateway page with
* something that will kill the kernel or a
Expand All @@ -27,7 +26,7 @@

.level LEVEL

__HEAD
.text

.import syscall_exit,code
.import syscall_exit_rfi,code
Expand Down Expand Up @@ -637,7 +636,7 @@ END(sys_call_table64)
All light-weight-syscall atomic operations
will use this set of locks
*/
.section .data, "aw"
.section .data
.align PAGE_SIZE
ENTRY(lws_lock_start)
/* lws locks */
Expand Down
1 change: 1 addition & 0 deletions arch/parisc/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ SECTIONS

_text = .; /* Text and read-only data */
.text ALIGN(16) : {
HEAD_TEXT
TEXT_TEXT
SCHED_TEXT
LOCK_TEXT
Expand Down
3 changes: 1 addition & 2 deletions arch/parisc/lib/fixup.S
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
#include <asm/assembly.h>
#include <asm/errno.h>
#include <linux/linkage.h>
#include <linux/init.h>

#ifdef CONFIG_SMP
.macro get_fault_ip t1 t2
Expand Down Expand Up @@ -56,7 +55,7 @@

.level LEVEL

__HEAD
.text
.section .fixup, "ax"

/* get_user() fixups, store -EFAULT in r8, and 0 in r9 */
Expand Down
5 changes: 2 additions & 3 deletions arch/parisc/lib/lusercopy.S
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,11 @@
*/


.text

#include <asm/assembly.h>
#include <asm/errno.h>
#include <linux/linkage.h>
#include <linux/init.h>

__HEAD

/*
* get_sr gets the appropriate space value into
Expand Down
1 change: 1 addition & 0 deletions arch/parisc/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,7 @@ void __init mem_init(void)
}

unsigned long *empty_zero_page __read_mostly;
EXPORT_SYMBOL(empty_zero_page);

void show_mem(void)
{
Expand Down
2 changes: 1 addition & 1 deletion include/asm-parisc/checksum.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ static inline __sum16 ip_fast_csum(const void *iph, unsigned int ihl)
"2:\n"
: "=r" (sum), "=r" (iph), "=r" (ihl)
: "1" (iph), "2" (ihl)
: "r19", "r20", "r21" );
: "r19", "r20", "r21", "memory");

return (__force __sum16)sum;
}
Expand Down

0 comments on commit 7775c97

Please sign in to comment.