* Re: [BUG] unable to handle kernel paging request at virtual address 0800000e
[not found] <4616CBF4.8020205@m3y3r.de>
@ 2007-04-09 20:48 ` Chuck Ebbert
2007-04-13 19:45 ` Joe Kappus
1 sibling, 0 replies; 2+ messages in thread
From: Chuck Ebbert @ 2007-04-09 20:48 UTC (permalink / raw)
To: Thomas Meyer; +Cc: Linux Kernel Mailing List, linux-scsi
Thomas Meyer wrote:
> dmesg output:
>
> pktcdvd: pkt_get_last_written failed
> BUG: unable to handle kernel paging request at virtual address 0800000e
<SNIP>
> EFLAGS: 00010203 (2.6.21-rc6 #295)
<SNIP>
> cdrom: This disc doesn't have any tracks I recognize!
>
> This happens while calling command pktsetup.
>
Well that's very strange.
long do_sys_open(int dfd, const char __user *filename, int flags, int mode)
{
char *tmp = getname(filename);
int fd = PTR_ERR(tmp);
if (!IS_ERR(tmp)) {
fd = get_unused_fd();
if (fd >= 0) {
============> struct file *f = do_filp_open(dfd, tmp, flags, mode);
if (IS_ERR(f)) {
put_unused_fd(fd);
fd = PTR_ERR(f);
} else {
fsnotify_open(f->f_path.dentry);
fd_install(fd, f);
}
}
putname(tmp);
}
do_filp_open has returned 0x8000002
Isn't that a SCSI error of some kind?
IAC we have tried to do fsnotify_open(f->f_path.dentry) with that result...
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [BUG] unable to handle kernel paging request at virtual address 0800000e
[not found] <4616CBF4.8020205@m3y3r.de>
2007-04-09 20:48 ` [BUG] unable to handle kernel paging request at virtual address 0800000e Chuck Ebbert
@ 2007-04-13 19:45 ` Joe Kappus
1 sibling, 0 replies; 2+ messages in thread
From: Joe Kappus @ 2007-04-13 19:45 UTC (permalink / raw)
To: Thomas Meyer; +Cc: Linux Kernel Mailing List, linux-scsi
I can confirm the same oops on 2.6.20-ck1 with pktcdvd either as
module or as built-in.
I can assume perhaps this is not so much an issue with the pktcdvd
driver as it is with the libata drivers and scsi. Beats me, I'll
leave it up to you.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-04-13 19:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <4616CBF4.8020205@m3y3r.de>
2007-04-09 20:48 ` [BUG] unable to handle kernel paging request at virtual address 0800000e Chuck Ebbert
2007-04-13 19:45 ` Joe Kappus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox