From owner-p4-projects@FreeBSD.ORG Sat Oct 21 10:06:02 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id B911C16A47B; Sat, 21 Oct 2006 10:06:02 +0000 (UTC) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90C6216A416 for ; Sat, 21 Oct 2006 10:06:02 +0000 (UTC) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BA8343D5F for ; Sat, 21 Oct 2006 10:06:02 +0000 (GMT) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k9LA62Wg028903 for ; Sat, 21 Oct 2006 10:06:02 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k9LA61px028900 for perforce@freebsd.org; Sat, 21 Oct 2006 10:06:01 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Sat, 21 Oct 2006 10:06:01 GMT Message-Id: <200610211006.k9LA61px028900@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson To: Perforce Change Reviews Cc: Subject: PERFORCE change 108223 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Oct 2006 10:06:03 -0000 http://perforce.freebsd.org/chv.cgi?CH=108223 Change 108223 by rwatson@rwatson_peppercorn on 2006/10/21 10:05:57 Remove unneeded suser in RELENG_6; this is already gone in HEAD. Affected files ... .. //depot/projects/trustedbsd/priv6/src/sys/kern/kern_ktr.c#2 edit Differences ... ==== //depot/projects/trustedbsd/priv6/src/sys/kern/kern_ktr.c#2 (text+ko) ==== @@ -141,9 +141,6 @@ if (enable) { if (ktr_alq_enabled) return (0); - error = suser(curthread); - if (error) - return (error); error = alq_open(&ktr_alq, (const char *)ktr_alq_file, req->td->td_ucred, ALQ_DEFAULT_CMODE, sizeof(struct ktr_entry), ktr_alq_depth);