From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C039130595C for ; Tue, 24 Mar 2026 19:34:47 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774380887; cv=none; b=LTNtOp508RW0Xb3X23VJEiLK9qJgeNNwVrWMAhlL6NwtrPZGdZPWlKQJHOLMc9EiWiWFl5/L8KI9IZaPjvqAnzgWk+qMjK8ytoT44/gOjyOL+QxfWJmwYEqsxgiVvX0DddY6AJeMrrMwFUYu+xfUIeWxzVxpkq0D/qI3UMZeXhA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774380887; c=relaxed/simple; bh=R8I4mdhtlC1Y2rsYo7HXdjeN+ixJqbw10kbyE8reKig=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition:In-Reply-To; b=sbZmlf280PzHWAHzxrI1mISrvgSla9Du2jNTU2UUHZhY3cwfpcBZo9MIbY0yTSMncUPTA9GGuHaI0ckYQVrd8yBkb5IzzyhktWhh1bi++jwGULbIF6X3KQ+ItkerYxSCQNaNJ2RZZBnljsUOFDT+QOTbyIjDGkJzDuTh0a05tQg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=VIobglsX; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="VIobglsX" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 47733C19424; Tue, 24 Mar 2026 19:34:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1774380887; bh=R8I4mdhtlC1Y2rsYo7HXdjeN+ixJqbw10kbyE8reKig=; h=Date:From:To:Cc:Subject:In-Reply-To:From; b=VIobglsXliT085fJ7tTtsNbvortGGRFcanYJOJ5yzPvJxjzlAKbDvW7Bnlc1rRVo5 /NP01GkFOWl+pJnNxtZIaNau+od5syO0Aw+9yMOF0D4tqV9Yxvo3bBhKHi9VOCpQyy vGKjr1KhPobO6upQAfkAOM0/BE5jn1hG/clWZWOj2HcDtY3AYmWLW+mqTzfhZSvAqU doz33itB2g0+Yu9IlbfX1dyT+qsGsvGf1WknWCrbc1qtp3tqRXGi1VvsH59uLiZ4eO Hdpa2re8nrpody5agAj/EmDko203caTcAPlOdvP6Lcy0X0aWQKyCrFqnEEMwxi1NVi VlXS3mEPOHyEg== Date: Tue, 24 Mar 2026 14:34:45 -0500 From: Bjorn Helgaas To: Simon Richter Cc: linux-pci@vger.kernel.org, intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org Subject: Re: [PATCH v3 0/5] Bridges without VGA support Message-ID: <20260324193445.GA1149183@bhelgaas> Precedence: bulk X-Mailing-List: linux-pci@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260307173538.763188-1-Simon.Richter@hogyros.de> On Sun, Mar 08, 2026 at 02:35:33AM +0900, Simon Richter wrote: > Hi, > > reformatted the descriptions to follow the style guide, removed unlikely() > from return code checks. > > Companion patch for i915/xe is v3 of > > https://patchwork.freedesktop.org/series/161721/ > > which can be applied independently and should probably go in before the > __must_check patches at least. > > Not sure if these should have a Cc stable. If yes, there is a backport of > the i915/xe patch as well (what patchwork calls "v4"). > > Simon Richter (5): > vgaarb: pass vga_get_uninterruptible() errors to userspace > vgaarb: pass errors from pci_set_vga_state() up > vgaarb: mark vga_get() and wrappers as __must_check > pci: check if VGA decoding was really activated > pci: mark pci_set_vga_state() as __must_check > > drivers/pci/pci.c | 6 ++++++ > drivers/pci/vgaarb.c | 20 +++++++++++++++++--- > include/linux/pci.h | 4 ++-- > include/linux/vgaarb.h | 15 ++++++++------- > 4 files changed, 33 insertions(+), 12 deletions(-) Applied to pci/vga for v7.1, thanks!