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
Kirill Smelkov
linux
Commits
b953eda4
Commit
b953eda4
authored
Apr 05, 2002
by
Paul Mackerras
Browse files
Options
Browse Files
Download
Plain Diff
Merge cargo.(none):/home/paulus/kernel/linux-2.5
into cargo.(none):/home/paulus/kernel/for-linus-ppc
parents
5e4b5079
1c28e3d1
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
294 additions
and
287 deletions
+294
-287
arch/ppc/Config.help
arch/ppc/Config.help
+10
-0
arch/ppc/config.in
arch/ppc/config.in
+277
-284
arch/ppc/kernel/ppc_ksyms.c
arch/ppc/kernel/ppc_ksyms.c
+4
-0
arch/ppc/kernel/signal.c
arch/ppc/kernel/signal.c
+3
-3
No files found.
arch/ppc/Config.help
View file @
b953eda4
...
...
@@ -1033,6 +1033,16 @@ CONFIG_XMON
Include in-kernel hooks for the xmon kernel monitor/debugger
supported by the PPC port.
Include BDI2000 debugger support
CONFIG_BDI_SWITCH
Include in-kernel support for the Abatron BDI2000 debugger.
Add additional CFLAGS to the kernel build
CONFIG_MORE_COMPILE_OPTIONS
If you want to add additional CFLAGS to the kernel build, such as
-g for KGDB, XMON or the BDI2000, enable this option and then
enter what you would like to add in the next question.
CONFIG_ADVANCED_OPTIONS
This option will enable prompting for a variety of advanced kernel
configuration options. These options can cause the kernel to not
...
...
arch/ppc/config.in
View file @
b953eda4
This diff is collapsed.
Click to expand it.
arch/ppc/kernel/ppc_ksyms.c
View file @
b953eda4
...
...
@@ -79,6 +79,10 @@ extern unsigned char __res[];
extern
unsigned
long
ret_to_user_hook
;
extern
unsigned
long
mm_ptov
(
unsigned
long
paddr
);
extern
void
*
consistent_alloc
(
int
gfp
,
size_t
size
,
dma_addr_t
*
dma_handle
);
extern
void
consistent_free
(
void
*
vaddr
);
extern
void
consistent_sync
(
void
*
vaddr
,
size_t
size
,
int
direction
);
EXPORT_SYMBOL
(
clear_page
);
EXPORT_SYMBOL
(
do_signal
);
EXPORT_SYMBOL
(
do_syscall_trace
);
...
...
arch/ppc/kernel/signal.c
View file @
b953eda4
...
...
@@ -594,8 +594,8 @@ int do_signal(sigset_t *oldset, struct pt_regs *regs)
info
.
si_signo
=
signr
;
info
.
si_errno
=
0
;
info
.
si_code
=
SI_USER
;
info
.
si_pid
=
current
->
p
_pptr
->
pid
;
info
.
si_uid
=
current
->
p
_pptr
->
uid
;
info
.
si_pid
=
current
->
p
arent
->
pid
;
info
.
si_uid
=
current
->
p
arent
->
uid
;
}
/* If the (new) signal is now blocked, requeue it. */
...
...
@@ -634,7 +634,7 @@ int do_signal(sigset_t *oldset, struct pt_regs *regs)
case
SIGSTOP
:
current
->
state
=
TASK_STOPPED
;
current
->
exit_code
=
signr
;
if
(
!
(
current
->
p
_pptr
->
sig
->
action
[
SIGCHLD
-
1
].
sa
.
sa_flags
&
SA_NOCLDSTOP
))
if
(
!
(
current
->
p
arent
->
sig
->
action
[
SIGCHLD
-
1
].
sa
.
sa_flags
&
SA_NOCLDSTOP
))
notify_parent
(
current
,
SIGCHLD
);
schedule
();
continue
;
...
...
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