From owner-svn-src-head@freebsd.org Sat Sep 19 11:23:48 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 996029CF33F; Sat, 19 Sep 2015 11:23:48 +0000 (UTC) (envelope-from hps@selasky.org) Received: from mail.turbocat.net (heidi.turbocat.net [88.198.202.214]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 572661DE9; Sat, 19 Sep 2015 11:23:47 +0000 (UTC) (envelope-from hps@selasky.org) Received: from laptop015.home.selasky.org (cm-176.74.213.204.customer.telag.net [176.74.213.204]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id 25EEE1FE023; Sat, 19 Sep 2015 13:23:40 +0200 (CEST) Subject: Re: svn commit: r287780 - in head: share/man/man9 sys/kern sys/sys To: Davide Italiano References: <201509141052.t8EAqRWf008293@repo.freebsd.org> <20150916220559.GS1023@FreeBSD.org> <55FA69BD.10507@selasky.org> <55FD22E9.2040508@selasky.org> Cc: Gleb Smirnoff , "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" , Julien Charbon , Randall Stewart From: Hans Petter Selasky Message-ID: <55FD461A.4030101@selasky.org> Date: Sat, 19 Sep 2015 13:25:14 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 MIME-Version: 1.0 In-Reply-To: <55FD22E9.2040508@selasky.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Sep 2015 11:23:48 -0000 On 09/19/15 10:55, Hans Petter Selasky wrote: > It currently has one critical client, and that is destruction of TCP > connections. In general I see the added function extremely useful when creating protocols which use callouts, which destruct their "PCBs" from interrupt context, that you don't need a sleeping context to destruct "PCBs" in general. Further with non-MPSAFE callouts, tracking the return value of callout_reset_xxx() and callout_stop_xxx() is not an option. callout_reset_async() is a requirement for non-blocking and sane callout operation. We need this functionality in the callout subsystem simply! It is a failure not to have it. --HPS Minor typo: s/rss/rrs