From owner-svn-src-all@FreeBSD.ORG Mon May 25 11:45:14 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4C81C858; Mon, 25 May 2015 11:45:14 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 27DE0DF; Mon, 25 May 2015 11:45:14 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from ralph.baldwin.cx (pool-173-54-116-245.nwrknj.fios.verizon.net [173.54.116.245]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 0D90CB926; Mon, 25 May 2015 07:45:12 -0400 (EDT) From: John Baldwin To: Dmitry Chagin Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r283469 - head/sys/compat/linux Date: Mon, 25 May 2015 07:41:48 -0400 Message-ID: <1462114.hO2YCqOyYV@ralph.baldwin.cx> User-Agent: KMail/4.14.3 (FreeBSD/10.1-STABLE; KDE/4.14.3; amd64; ; ) In-Reply-To: <201505241740.t4OHeEF3025573@svn.freebsd.org> References: <201505241740.t4OHeEF3025573@svn.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Mon, 25 May 2015 07:45:12 -0400 (EDT) X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 May 2015 11:45:14 -0000 On Sunday, May 24, 2015 05:40:14 PM Dmitry Chagin wrote: > Author: dchagin > Date: Sun May 24 17:40:14 2015 > New Revision: 283469 > URL: https://svnweb.freebsd.org/changeset/base/283469 > > Log: > As fo_fill_kinfo() does not check fo_fill_kinfo to NULL > add a fo_fill_kinfo op to eventfdops. Yes, it is mandatory on purpose. :) Can you add a new KF_* file type (you can just call it eventfd in case we decide to grow a native eventfd)? Can you also add any meaningful data to the record that is exported to userland (e.g. old POSIX semaphores export their current count value) and update libprocstat/procstat/fstat to handle this file type? -- John Baldwin