From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 083A9C433E0 for ; Thu, 2 Jul 2020 12:17:48 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id E518F20884 for ; Thu, 2 Jul 2020 12:17:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728813AbgGBMRp (ORCPT ); Thu, 2 Jul 2020 08:17:45 -0400 Received: from cloudserver094114.home.pl ([79.96.170.134]:48804 "EHLO cloudserver094114.home.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728901AbgGBMRn (ORCPT ); Thu, 2 Jul 2020 08:17:43 -0400 Received: from 89-64-84-242.dynamic.chello.pl (89.64.84.242) (HELO kreacher.localnet) by serwer1319399.home.pl (79.96.170.134) with SMTP (IdeaSmtpServer 0.83.415) id 160ca2da34263fd4; Thu, 2 Jul 2020 14:17:41 +0200 From: "Rafael J. Wysocki" To: Linux ACPI Cc: LKML , Erik Kaneda , Bob Moore , Len Brown , Dan Williams , Dan Williams Subject: [PATCH 0/3] ACPI: OSL: Always use deferred unmapping of memory Date: Thu, 02 Jul 2020 14:09:38 +0200 Message-ID: <22474080.3crLlKV2y5@kreacher> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org Hi All, This series is on top of the git branch at git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git \ acpica-osl and it basically makes the deferred unmapping of ACPI memory introduced by the first commit in that branch be the only option. Arguably, it could be done in a single patch, but I prefer to do that in smaller steps in case something breaks, to make it easier to identify the point of breakage. Patch [1/3] causes acpi_os_unmap_generic_address() to use the deferred unmapping, patch [2/3] makes acpi_os_unmap_iomem() use it too and patch [3/3] is a cleanup of top of the latter. Thanks, Rafael