From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8327 invoked by alias); 5 Dec 2007 18:36:52 -0000 Received: (qmail 8287 invoked by uid 48); 5 Dec 2007 18:36:41 -0000 Date: Wed, 05 Dec 2007 18:36:00 -0000 Message-ID: <20071205183641.8286.qmail@sourceware.org> From: "dsmith at redhat dot com" To: systemtap@sources.redhat.com In-Reply-To: <20071130091643.5434.jmmv@NetBSD.org> References: <20071130091643.5434.jmmv@NetBSD.org> Reply-To: sourceware-bugzilla@sourceware.org Subject: [Bug tapsets/5434] Error processing (missing) nfsservctl syscall X-Bugzilla-Reason: AssignedTo Mailing-List: contact systemtap-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: systemtap-owner@sourceware.org X-SW-Source: 2007-q4/txt/msg00449.txt.bz2 ------- Additional Comments From dsmith at redhat dot com 2007-12-05 18:36 ------- You must not have CONFIG_COMPAT set either, since the definition of syscall.nfsservctl looks like: probe syscall.nfsservctl = kernel.function("sys_nfsservctl") ?, kernel.function("compat_sys_nfsservctl") ? { name = "nfsservctl" cmd = $cmd argp_uaddr = $arg resp_uaddr = $res argstr = sprintf("%s, %p, %p", _nfsctl_cmd_str($cmd), $arg, $res) } I'm unsure how we could solve this, since we don't have access to the CONFIG_* defines at the probe level. We could grab the value of either CONFIG_NFSD or CONFIG_COMPAT in an embedded C function, but that doesn't help much. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5434 ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.