From owner-p4-projects@FreeBSD.ORG Sun Jun 3 11:03:01 2007 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 66F8C16A46B; Sun, 3 Jun 2007 11:03:01 +0000 (UTC) X-Original-To: perforce@FreeBSD.org Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4319416A468 for ; Sun, 3 Jun 2007 11:03:01 +0000 (UTC) (envelope-from rdivacky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 33CB513C448 for ; Sun, 3 Jun 2007 11:03:01 +0000 (UTC) (envelope-from rdivacky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l53B31kY022265 for ; Sun, 3 Jun 2007 11:03:01 GMT (envelope-from rdivacky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l53B30vi022254 for perforce@freebsd.org; Sun, 3 Jun 2007 11:03:00 GMT (envelope-from rdivacky@FreeBSD.org) Date: Sun, 3 Jun 2007 11:03:00 GMT Message-Id: <200706031103.l53B30vi022254@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to rdivacky@FreeBSD.org using -f From: Roman Divacky To: Perforce Change Reviews Cc: Subject: PERFORCE change 120831 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: Sun, 03 Jun 2007 11:03:01 -0000 http://perforce.freebsd.org/chv.cgi?CH=120831 Change 120831 by rdivacky@rdivacky_witten on 2007/06/03 11:02:30 Add prototypes of kern_[l]statat to syscallsubr.h Affected files ... .. //depot/projects/soc2007/rdivacky/linux_at/sys/sys/syscallsubr.h#3 edit Differences ... ==== //depot/projects/soc2007/rdivacky/linux_at/sys/sys/syscallsubr.h#3 (text+ko) ==== @@ -107,6 +107,8 @@ enum uio_seg segflg); int kern_lstat(struct thread *td, char *path, enum uio_seg pathseg, struct stat *sbp); +int kern_lstatat(struct thread *td, char *path, enum uio_seg pathseg, + struct stat *sbp, int dfd); int kern_lutimes(struct thread *td, char *path, enum uio_seg pathseg, struct timeval *tptr, enum uio_seg tptrseg); int kern_mkdir(struct thread *td, char *path, enum uio_seg segflg, @@ -168,6 +170,8 @@ int kern_sigsuspend(struct thread *td, sigset_t mask); int kern_stat(struct thread *td, char *path, enum uio_seg pathseg, struct stat *sbp); +int kern_statat(struct thread *td, char *path, enum uio_seg pathseg, + struct stat *sbp, int dfd); int kern_statfs(struct thread *td, char *path, enum uio_seg pathseg, struct statfs *buf); int kern_symlink(struct thread *td, char *path, char *link,