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
7190053f
Commit
7190053f
authored
Nov 25, 2003
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge master.kernel.org:/home/davem/BK/net-2.5
into home.osdl.org:/home/torvalds/v2.5/linux
parents
873fba1b
d9898081
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
3 deletions
+4
-3
arch/ia64/kernel/unwind.c
arch/ia64/kernel/unwind.c
+1
-1
drivers/net/irda/smsc-ircc2.c
drivers/net/irda/smsc-ircc2.c
+1
-1
fs/proc/proc_tty.c
fs/proc/proc_tty.c
+1
-0
include/asm-ia64/pgtable.h
include/asm-ia64/pgtable.h
+1
-1
No files found.
arch/ia64/kernel/unwind.c
View file @
7190053f
...
...
@@ -1910,7 +1910,7 @@ unw_unwind_to_user (struct unw_frame_info *info)
__FUNCTION__
,
ip
);
return
-
1
;
}
if
(
ip
<
GATE_ADDR
)
if
(
ip
<
FIXADDR_USER_END
)
return
0
;
}
unw_get_ip
(
info
,
&
ip
);
...
...
drivers/net/irda/smsc-ircc2.c
View file @
7190053f
...
...
@@ -524,7 +524,7 @@ static int smsc_ircc_present(unsigned int fir_base, unsigned int sir_base)
return
0
;
out3:
release_region
(
fir_base
,
SMSC_IRCC2_F
IR_CHIP_IO_EXTENT
);
release_region
(
sir_base
,
SMSC_IRCC2_S
IR_CHIP_IO_EXTENT
);
out2:
release_region
(
fir_base
,
SMSC_IRCC2_FIR_CHIP_IO_EXTENT
);
out1:
...
...
fs/proc/proc_tty.c
View file @
7190053f
...
...
@@ -198,6 +198,7 @@ void proc_tty_register_driver(struct tty_driver *driver)
return
;
ent
->
read_proc
=
driver
->
read_proc
;
ent
->
write_proc
=
driver
->
write_proc
;
ent
->
owner
=
driver
->
owner
;
ent
->
data
=
driver
;
driver
->
proc_entry
=
ent
;
...
...
include/asm-ia64/pgtable.h
View file @
7190053f
...
...
@@ -496,6 +496,6 @@ extern void update_mmu_cache (struct vm_area_struct *vma, unsigned long vaddr, p
/* These tell get_user_pages() that the first gate page is accessible from user-level. */
#define FIXADDR_USER_START GATE_ADDR
#define FIXADDR_USER_END (GATE_ADDR + 2*PAGE_SIZE)
#define FIXADDR_USER_END (GATE_ADDR + 2*P
ERCPU_P
AGE_SIZE)
#endif
/* _ASM_IA64_PGTABLE_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