Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 71917
b: refs/heads/master
c: 873d50e
h: refs/heads/master
i:
  71915: 2c68aac
v: v3
  • Loading branch information
Kyle McMartin authored and Kyle McMartin committed Oct 18, 2007
1 parent e5af4ee commit c8c0b75
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 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: 6ebeafff6452d89b294ba9b7402529b981b9624c
refs/heads/master: 873d50e2e56741406ff9d68c275f0c560e896a80
4 changes: 2 additions & 2 deletions trunk/arch/parisc/hpux/gate.S
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
.import hpux_call_table
.import hpux_syscall_exit,code

.align 4096
.align PAGE_SIZE
ENTRY(hpux_gateway_page)
nop
#ifdef CONFIG_64BIT
Expand Down Expand Up @@ -103,5 +103,5 @@ syscall_nosys:
ldo -ENOSYS(%r0),%r28
ENDPROC(hpux_gateway_page)

.align 4096
.align PAGE_SIZE
ENTRY(end_hpux_gateway_page)
4 changes: 2 additions & 2 deletions trunk/arch/parisc/kernel/entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@

.text

.align 4096
.align PAGE_SIZE

ENTRY(fault_vector_20)
/* First vector is invalid (0) */
Expand Down Expand Up @@ -904,7 +904,7 @@ ENDPROC(_switch_to)
*
*/

.align 4096
.align PAGE_SIZE

ENTRY(syscall_exit_rfi)
mfctl %cr30,%r16
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/parisc/kernel/hpmc.S
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@
* IODC requires 7K byte stack. That leaves 1K byte for os_hpmc.
*/

.align 4096
.align PAGE_SIZE
hpmc_stack:
.block 16384

#define HPMC_IODC_BUF_SIZE 0x8000

.align 4096
.align PAGE_SIZE
hpmc_iodc_buf:
.block HPMC_IODC_BUF_SIZE

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/parisc/kernel/init_task.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ EXPORT_SYMBOL(init_mm);
* way process stacks are handled. This is done by having a special
* "init_task" linker map entry..
*/
unsigned char interrupt_stack[ISTACK_SIZE] __attribute__ ((section("init_istack"), aligned(4096)));
unsigned char interrupt_stack[ISTACK_SIZE] __attribute__ ((section("init_istack"), aligned(PAGE_SIZE)));
union thread_union init_thread_union
__attribute__((aligned(128))) __attribute__((__section__(".data.init_task"))) =
{ INIT_THREAD_INFO(init_task) };
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/parisc/kernel/syscall.S
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ END(sys_call_table64)
will use this set of locks
*/
.section .data
.align 4096
.align PAGE_SIZE
ENTRY(lws_lock_start)
/* lws locks */
.align 16
Expand Down

0 comments on commit c8c0b75

Please sign in to comment.