Message ID | 157186182463.3995.13922458878706311997.stgit@warthog.procyon.org.uk (mailing list archive) |
---|---|
Headers | show
Return-Path: <SRS0=rnvW=YQ=vger.kernel.org=linux-security-module-owner@kernel.org> Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id D7DA5913 for <patchwork-linux-security-module@patchwork.kernel.org>; Wed, 23 Oct 2019 20:17:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id AC7FA21872 for <patchwork-linux-security-module@patchwork.kernel.org>; Wed, 23 Oct 2019 20:17:19 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="hX4nfgmH" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2403842AbfJWURT (ORCPT <rfc822;patchwork-linux-security-module@patchwork.kernel.org>); Wed, 23 Oct 2019 16:17:19 -0400 Received: from us-smtp-1.mimecast.com ([207.211.31.81]:23858 "EHLO us-smtp-delivery-1.mimecast.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S2391642AbfJWURT (ORCPT <rfc822;linux-security-module@vger.kernel.org>); Wed, 23 Oct 2019 16:17:19 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1571861837; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=oeW+VmP3QU4FevcRW4lhlaqjbMpXhUTeOjj1aJjNG14=; b=hX4nfgmH3kGFD2yDsyE7PIQwJhzp9XGz2CeI8JM0IhcBvTkF2ehW2hjo9gfqY5pfYoNMXx xQ47O8XW7g45yLMH1tyZoz7XUXTIXtc3xCZyhELHM06UvvBR0ZwnH/dN9UFCjiEUX5/NoY 2aAo02RxAEpIV1/KtdY4N8EaoFb2N/Q= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-193-7oQmPxgHOp-fA6EnANPl_g-1; Wed, 23 Oct 2019 16:17:13 -0400 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id C970E5E4; Wed, 23 Oct 2019 20:17:08 +0000 (UTC) Received: from warthog.procyon.org.uk (ovpn-121-40.rdu2.redhat.com [10.10.121.40]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8518C5D6D0; Wed, 23 Oct 2019 20:17:05 +0000 (UTC) Subject: [RFC PATCH 00/10] pipe: Notification queue preparation [ver #2] From: David Howells <dhowells@redhat.com> To: torvalds@linux-foundation.org Cc: dhowells@redhat.com, Rasmus Villemoes <linux@rasmusvillemoes.dk>, Greg Kroah-Hartman <gregkh@linuxfoundation.org>, Peter Zijlstra <peterz@infradead.org>, nicolas.dichtel@6wind.com, raven@themaw.net, Christian Brauner <christian@brauner.io>, dhowells@redhat.com, keyrings@vger.kernel.org, linux-usb@vger.kernel.org, linux-block@vger.kernel.org, linux-security-module@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-api@vger.kernel.org, linux-security-module@vger.kernel.org, linux-kernel@vger.kernel.org Date: Wed, 23 Oct 2019 21:17:04 +0100 Message-ID: <157186182463.3995.13922458878706311997.stgit@warthog.procyon.org.uk> User-Agent: StGit/unknown-version MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-MC-Unique: 7oQmPxgHOp-fA6EnANPl_g-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Sender: owner-linux-security-module@vger.kernel.org Precedence: bulk List-ID: <linux-security-module.vger.kernel.org> |
Series |
pipe: Notification queue preparation [ver #2]
|
expand
|
On Wed, Oct 23, 2019 at 09:17:04PM +0100, David Howells wrote: > (1) It removes the nr_exclusive argument from __wake_up_sync_key() as this > is always 1. This prepares for step 2. > > (2) Adds wake_up_interruptible_sync_poll_locked() so that poll can be > woken up from a function that's holding the poll waitqueue spinlock. > include/linux/wait.h | 11 +- > kernel/sched/wait.c | 37 ++++-- > Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>