Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
7d1d6131
Commit
7d1d6131
authored
Sep 06, 2002
by
Ivan Kokshaysky
Committed by
Linus Torvalds
Sep 06, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] alpha: compile fixes
- add another argument to do_fork(); - assorted compile fixes.
parent
8656c276
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
53 additions
and
5 deletions
+53
-5
arch/alpha/Makefile
arch/alpha/Makefile
+3
-0
arch/alpha/kernel/irq.c
arch/alpha/kernel/irq.c
+1
-1
arch/alpha/kernel/process.c
arch/alpha/kernel/process.c
+5
-3
arch/alpha/kernel/smp.c
arch/alpha/kernel/smp.c
+1
-1
include/asm-alpha/ide.h
include/asm-alpha/ide.h
+11
-0
include/asm-alpha/kmap_types.h
include/asm-alpha/kmap_types.h
+31
-0
include/asm-alpha/user.h
include/asm-alpha/user.h
+1
-0
No files found.
arch/alpha/Makefile
View file @
7d1d6131
...
...
@@ -128,6 +128,9 @@ archmrproper:
vmlinux
:
arch/alpha/vmlinux.lds.s
arch/$(ARCH)/vmlinux.lds.s
:
arch/$(ARCH)/vmlinux.lds.S
$(CPP)
$(CPPFLAGS)
$
(
CPPFLAGS_
$@
)
-D__ASSEMBLY__
-P
-C
-U
$(ARCH)
$<
-o
$@
bootpfile
:
@
$(MAKEBOOT)
bootpfile
...
...
arch/alpha/kernel/irq.c
View file @
7d1d6131
...
...
@@ -12,11 +12,11 @@
#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/ptrace.h>
#include <linux/errno.h>
#include <linux/kernel_stat.h>
#include <linux/signal.h>
#include <linux/sched.h>
#include <linux/ptrace.h>
#include <linux/interrupt.h>
#include <linux/slab.h>
#include <linux/random.h>
...
...
arch/alpha/kernel/process.c
View file @
7d1d6131
...
...
@@ -261,11 +261,13 @@ alpha_clone(unsigned long clone_flags, unsigned long usp,
struct
switch_stack
*
swstack
)
{
struct
task_struct
*
p
;
struct
pt_regs
*
u_regs
=
(
struct
pt_regs
*
)
(
swstack
+
1
);
int
*
user_tid
=
(
int
*
)
u_regs
->
r19
;
if
(
!
usp
)
usp
=
rdusp
();
p
=
do_fork
(
clone_flags
&
~
CLONE_IDLETASK
,
usp
,
(
struct
pt_regs
*
)
(
swstack
+
1
),
0
);
p
=
do_fork
(
clone_flags
&
~
CLONE_IDLETASK
,
usp
,
u_regs
,
0
,
user_tid
);
return
IS_ERR
(
p
)
?
PTR_ERR
(
p
)
:
p
->
pid
;
}
...
...
@@ -274,7 +276,7 @@ alpha_vfork(struct switch_stack * swstack)
{
struct
task_struct
*
p
;
p
=
do_fork
(
CLONE_VFORK
|
CLONE_VM
|
SIGCHLD
,
rdusp
(),
(
struct
pt_regs
*
)
(
swstack
+
1
),
0
);
(
struct
pt_regs
*
)
(
swstack
+
1
),
0
,
NULL
);
return
IS_ERR
(
p
)
?
PTR_ERR
(
p
)
:
p
->
pid
;
}
...
...
arch/alpha/kernel/smp.c
View file @
7d1d6131
...
...
@@ -432,7 +432,7 @@ fork_by_hand(void)
/* Don't care about the contents of regs since we'll never
reschedule the forked task. */
struct
pt_regs
regs
;
return
do_fork
(
CLONE_VM
|
CLONE_IDLETASK
,
0
,
&
regs
,
0
);
return
do_fork
(
CLONE_VM
|
CLONE_IDLETASK
,
0
,
&
regs
,
0
,
NULL
);
}
/*
...
...
include/asm-alpha/ide.h
View file @
7d1d6131
...
...
@@ -80,6 +80,17 @@ static __inline__ void ide_init_default_hwifs(void)
#endif
}
#define ide_request_irq(irq,hand,flg,dev,id) request_irq((irq),(hand),(flg),(dev),(id))
#define ide_free_irq(irq,dev_id) free_irq((irq), (dev_id))
#define ide_check_region(from,extent) check_region((from), (extent))
#define ide_request_region(from,extent,name) request_region((from), (extent), (name))
#define ide_release_region(from,extent) release_region((from), (extent))
#define ide_ack_intr(hwif) (1)
#define ide_fix_driveid(id) do {} while (0)
#define ide_release_lock(lock) do {} while (0)
#define ide_get_lock(lock, hdlr, data) do {} while (0)
#endif
/* __KERNEL__ */
#endif
/* __ASMalpha_IDE_H */
include/asm-alpha/kmap_types.h
0 → 100644
View file @
7d1d6131
#ifndef _ASM_KMAP_TYPES_H
#define _ASM_KMAP_TYPES_H
/* Dummy header just to define km_type. */
#include <linux/config.h>
#if CONFIG_DEBUG_HIGHMEM
# define D(n) __KM_FENCE_##n ,
#else
# define D(n)
#endif
enum
km_type
{
D
(
0
)
KM_BOUNCE_READ
,
D
(
1
)
KM_SKB_SUNRPC_DATA
,
D
(
2
)
KM_SKB_DATA_SOFTIRQ
,
D
(
3
)
KM_USER0
,
D
(
4
)
KM_USER1
,
D
(
5
)
KM_BIO_SRC_IRQ
,
D
(
6
)
KM_BIO_DST_IRQ
,
D
(
7
)
KM_PTE0
,
D
(
8
)
KM_PTE1
,
D
(
9
)
KM_IRQ0
,
D
(
10
)
KM_IRQ1
,
D
(
11
)
KM_TYPE_NR
};
#undef D
#endif
include/asm-alpha/user.h
View file @
7d1d6131
#ifndef _ALPHA_USER_H
#define _ALPHA_USER_H
#include <linux/sched.h>
#include <linux/ptrace.h>
#include <asm/page.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment