mirror of git://sourceware.org/git/glibc.git
Update.
1998-02-16 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/alpha/ioperm.c (_ioperm): Map all ports starting from 0 not only from `from'. Patch by Maciej W. Rozycki <macro@ds2.pg.gda.pl>.
This commit is contained in:
parent
880f421fc3
commit
f886bea448
|
@ -1,3 +1,9 @@
|
||||||
|
1998-02-16 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/alpha/ioperm.c (_ioperm): Map all ports
|
||||||
|
starting from 0 not only from `from'.
|
||||||
|
Patch by Maciej W. Rozycki <macro@ds2.pg.gda.pl>.
|
||||||
|
|
||||||
1998-02-16 17:33 Ulrich Drepper <drepper@cygnus.com>
|
1998-02-16 17:33 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* elf/rtld.c (dl_main): Recognize --library-path parameter and
|
* elf/rtld.c (dl_main): Recognize --library-path parameter and
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 1992, 1996, 1997 Free Software Foundation, Inc.
|
/* Copyright (C) 1992, 1996, 1997, 1998 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by David Mosberger.
|
Contributed by David Mosberger.
|
||||||
|
|
||||||
|
@ -416,8 +416,7 @@ _ioperm (unsigned long int from, unsigned long int num, int turn_on)
|
||||||
__set_errno (ENODEV);
|
__set_errno (ENODEV);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
addr = port_to_cpu_addr (from, io.sys, 1);
|
addr = port_to_cpu_addr (0, io.sys, 1);
|
||||||
addr &= PAGE_MASK;
|
|
||||||
len = port_to_cpu_addr (MAX_PORT, io.sys, 1) - addr;
|
len = port_to_cpu_addr (MAX_PORT, io.sys, 1) - addr;
|
||||||
io.base =
|
io.base =
|
||||||
(unsigned long int) __mmap (0, len, PROT_NONE, MAP_SHARED,
|
(unsigned long int) __mmap (0, len, PROT_NONE, MAP_SHARED,
|
||||||
|
|
Loading…
Reference in New Issue