From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Rafael J. Wysocki" Subject: Re: [PATCH 0/11] ACPI: Fixes and cleanups related to iomaps management Date: Thu, 20 Jan 2011 21:57:16 +0100 Message-ID: <201101202157.16813.rjw__32916.8502278209$1295557141$gmane$org@sisk.pl> References: <201101201226.41021.rjw@sisk.pl> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-pm-bounces@lists.linux-foundation.org Errors-To: linux-pm-bounces@lists.linux-foundation.org To: Jeff Chua Cc: ACPI Devel Maling List , Linux-pm mailing list , LKML List-Id: linux-pm@vger.kernel.org On Thursday, January 20, 2011, Jeff Chua wrote: > On Thu, Jan 20, 2011 at 7:26 PM, Rafael J. Wysocki wrote: > > > [10/11] - Make the NVS code use existing iomaps if possible. > > Seems ok. > > > [11/11] - (cleanup) Remove an unnecessary field from struct nvs_page. > > This seems to have an issue. Notebook tries to suspend ... then resume > immediately. That's unexpected. Please apply the debug patch below in addition to the whole series and send a dmesg output containing a (failing) suspend attempt (with the patch applied). Thanks, Rafael --- drivers/acpi/nvs.c | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) Index: linux-2.6/drivers/acpi/nvs.c =================================================================== --- linux-2.6.orig/drivers/acpi/nvs.c +++ linux-2.6/drivers/acpi/nvs.c @@ -87,9 +87,15 @@ void suspend_nvs_free(void) entry->data = NULL; if (entry->kaddr) { if (entry->unmap) { + pr_info("%s: Unmapping %p\n", __func__, + entry->kaddr); + iounmap(entry->kaddr); entry->unmap = false; } else { + pr_info("%s: Dropping %p\n", __func__, + entry->kaddr); + acpi_os_unmap_memory(entry->kaddr, entry->size); } @@ -139,9 +145,17 @@ int suspend_nvs_save(void) if (!entry->kaddr) { suspend_nvs_free(); return -EIO; + } else { + pr_info("%s: Mapped %p\n", __func__, + entry->kaddr); } entry->unmap = true; + } else { + pr_info("%s: Got address %p\n", __func__, entry->kaddr); } + pr_info("%s: Saving %p <- %p\n", __func__, + entry->data, entry->kaddr); + memcpy(entry->data, entry->kaddr, entry->size); page_addr += PAGE_SIZE; @@ -164,6 +178,10 @@ void suspend_nvs_restore(void) printk(KERN_INFO "PM: Restoring platform NVS memory\n"); list_for_each_entry(entry, &nvs_list, node) - if (entry->data) + if (entry->data) { + pr_info("%s: Restoring %p -> %p\n", __func__, + entry->data, entry->kaddr); + memcpy(entry->kaddr, entry->data, entry->size); + } }