From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965393AbXDIUsU (ORCPT ); Mon, 9 Apr 2007 16:48:20 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S965687AbXDIUsT (ORCPT ); Mon, 9 Apr 2007 16:48:19 -0400 Received: from mx1.redhat.com ([66.187.233.31]:60408 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965393AbXDIUsR (ORCPT ); Mon, 9 Apr 2007 16:48:17 -0400 Message-ID: <461AA681.50605@redhat.com> Date: Mon, 09 Apr 2007 16:48:01 -0400 From: Chuck Ebbert Organization: Red Hat User-Agent: Thunderbird 1.5.0.10 (X11/20070302) MIME-Version: 1.0 To: Thomas Meyer CC: Linux Kernel Mailing List , linux-scsi@vger.kernel.org Subject: Re: [BUG] unable to handle kernel paging request at virtual address 0800000e References: <4616CBF4.8020205@m3y3r.de> In-Reply-To: <4616CBF4.8020205@m3y3r.de> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Thomas Meyer wrote: > dmesg output: > > pktcdvd: pkt_get_last_written failed > BUG: unable to handle kernel paging request at virtual address 0800000e > EFLAGS: 00010203 (2.6.21-rc6 #295) > 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...