From owner-svn-src-head@FreeBSD.ORG Fri Oct 3 08:09:22 2014 Return-Path: Delivered-To: svn-src-head@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 7A48B886; Fri, 3 Oct 2014 08:09:22 +0000 (UTC) Received: from mail-la0-x233.google.com (mail-la0-x233.google.com [IPv6:2a00:1450:4010:c03::233]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 327F078B; Fri, 3 Oct 2014 08:09:21 +0000 (UTC) Received: by mail-la0-f51.google.com with SMTP id ge10so600725lab.10 for ; Fri, 03 Oct 2014 01:09:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:mail-followup-to :references:mime-version:content-type:content-disposition :in-reply-to:user-agent; bh=JLPO7V+nYbESt0Tzu1Cxumh//71/1TrAFqXe3Bc9vFY=; b=IKWr/ZfY0VArtYCXDqFOSaxwXsNywgSEwu7jL7kL2R0TOt6k4zipS32UUlh5vgWJJW qWulUe0M/5bH9iAGJogtnzvozE5qXehU2EHVN0H3lQRwR/Bk4JNO3RBTxXcIAhqrqZEz d/OYiFEMgDn62mg4brNKe35r64CbXLXuPj79YmMRE9maoIfM+R/yQfXBdrCFXh5gfvc1 xjGIPCsmp5QGDF36+WqNnttVcPMr8dEoLKU/EwuUAerd0kfgrGLehdZmYX+UJK09LpWE KR+ai+THzCTo7edOUMbl8loMcxemtt8tmw80rEgmEiFW5rJlQlhHUongphIxHhdoWKh2 BUGw== X-Received: by 10.152.4.165 with SMTP id l5mr3950796lal.49.1412323758908; Fri, 03 Oct 2014 01:09:18 -0700 (PDT) Received: from brick.home (adcv67.neoplus.adsl.tpnet.pl. [79.184.47.67]) by mx.google.com with ESMTPSA id b1sm2421676lah.34.2014.10.03.01.09.17 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 03 Oct 2014 01:09:18 -0700 (PDT) Sender: =?UTF-8?Q?Edward_Tomasz_Napiera=C5=82a?= Date: Fri, 3 Oct 2014 10:09:15 +0200 From: Edward Tomasz Napierala To: Gleb Smirnoff Subject: Re: svn commit: r272403 - head/sys/fs/autofs Message-ID: <20141003080915.GA93114@brick.home> Mail-Followup-To: Gleb Smirnoff , kib@FreeBSD.org, src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org References: <201410021031.s92AVW0d096515@svn.freebsd.org> <20141002103556.GH73266@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20141002103556.GH73266@FreeBSD.org> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, kib@FreeBSD.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 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: Fri, 03 Oct 2014 08:09:22 -0000 On 1002T1435, Gleb Smirnoff wrote: > On Thu, Oct 02, 2014 at 10:31:32AM +0000, Edward Tomasz Napierala wrote: > E> Author: trasz > E> Date: Thu Oct 2 10:31:32 2014 > E> New Revision: 272403 > E> URL: https://svnweb.freebsd.org/changeset/base/272403 > E> > E> Log: > E> Make autofs timeout handling use timeout task instead of callout; > E> that's because the handler can sleep on sx lock. > > How long can it sleep? AFAIU, the taskqueue_thread is used by other > subsystems. For the duration of M_WAITOK allocation.