j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
Hi!
I tried unmapping zero virtual address page for sparc64 and found there is an issue with ob_pci_close; it calls close-deblocker method without deblocker being open. This leads to multiple references to wrong cells, including ones in zero page.
Signed-off-by: igor.v.kovalenko@gmail.com
Index: openbios-devel/drivers/pci.c =================================================================== --- openbios-devel.orig/drivers/pci.c +++ openbios-devel/drivers/pci.c @@ -79,7 +79,6 @@ ob_pci_open(int *idx) static void ob_pci_close(int *idx) { - selfword("close-deblocker"); }
static void
On Sun, Aug 9, 2009 at 11:55 PM, Igor Kovalenkoigor.v.kovalenko@gmail.com wrote:
Index: openbios-devel/drivers/pci.c
--- openbios-devel.orig/drivers/pci.c +++ openbios-devel/drivers/pci.c @@ -79,7 +79,6 @@ ob_pci_open(int *idx) static void ob_pci_close(int *idx) {
- selfword("close-deblocker");
}
Thanks, applied.