From patchwork Thu Jan 30 21:11:58 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Capella X-Patchwork-Id: 3559211 Return-Path: X-Original-To: patchwork-linux-pm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 89B0B9F381 for ; Thu, 30 Jan 2014 21:12:42 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4E61F20181 for ; Thu, 30 Jan 2014 21:12:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 39E16201B9 for ; Thu, 30 Jan 2014 21:12:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753736AbaA3VMZ (ORCPT ); Thu, 30 Jan 2014 16:12:25 -0500 Received: from mail-pd0-f179.google.com ([209.85.192.179]:59334 "EHLO mail-pd0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753640AbaA3VMX (ORCPT ); Thu, 30 Jan 2014 16:12:23 -0500 Received: by mail-pd0-f179.google.com with SMTP id q10so3505190pdj.38 for ; Thu, 30 Jan 2014 13:12:22 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=cxBrh69R6UCKnGtEGU227iGM+Z916ITMZJiHqKWa3lQ=; b=d7AzV/oVUH7usQ/JlzImiGJihLfOYfFF9T67gygQYvfiygFga3snj9OC4Xt/2G/YNa yYty/Qnzo84s+fb/KP+7FutmZHzau+p8UkHV8clBDjKH8CtZ/W0hbnlYKQ1XrXSakQKP Z8ogmLPqADh8ceKjL/kjFedYflYrelgvvj2UOYa0skbIDypYgNQNZWex0KcVq8B4LFko zc+6ugzQytSGt/FEk7jRksFb+X+4zQdIvuqhns1AAgMcZM/lBQ9y9Rw5AMCJzOoeFi60 DteDRQa43vYKpArqTKG2GJ8A7SSlWAVQ1EWEeWtkoh/l3SWY8O8s130A5Tn35vwhEBfg OLAg== X-Gm-Message-State: ALoCoQmxrI04cHkqdJg9hOsrT2vVy4uiFB6HQ6gc4S/2cypPR+KhI4fVDz20Ufby5HBz7csOB2Wg X-Received: by 10.68.229.164 with SMTP id sr4mr16470687pbc.82.1391116342790; Thu, 30 Jan 2014 13:12:22 -0800 (PST) Received: from localhost (cpe-76-93-135-111.san.res.rr.com. [76.93.135.111]) by mx.google.com with ESMTPSA id qq5sm20570162pbb.24.2014.01.30.13.12.20 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 30 Jan 2014 13:12:21 -0800 (PST) From: Sebastian Capella To: linux-kernel@vger.kernel.org, linux-mm@kvack.org, linux-pm@vger.kernel.org, linaro-kernel@lists.linaro.org, patches@linaro.org Cc: Sebastian Capella , Len Brown , "Rafael J. Wysocki" Subject: [PATCH v5 2/2] PM / Hibernate: use name_to_dev_t to parse resume Date: Thu, 30 Jan 2014 13:11:58 -0800 Message-Id: <1391116318-17253-3-git-send-email-sebastian.capella@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1391116318-17253-1-git-send-email-sebastian.capella@linaro.org> References: <1391116318-17253-1-git-send-email-sebastian.capella@linaro.org> Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Spam-Status: No, score=-7.3 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Use the name_to_dev_t call to parse the device name echo'd to to /sys/power/resume. This imitates the method used in hibernate.c in software_resume, and allows the resume partition to be specified using other equivalent device formats as well. By allowing /sys/debug/resume to accept the same syntax as the resume=device parameter, we can parse the resume=device in the init script and use the resume device directly from the kernel command line. Signed-off-by: Sebastian Capella Acked-by: Pavel Machek Cc: Len Brown Cc: "Rafael J. Wysocki" --- kernel/power/hibernate.c | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c index 0121dab..49d7a37 100644 --- a/kernel/power/hibernate.c +++ b/kernel/power/hibernate.c @@ -972,26 +972,27 @@ static ssize_t resume_show(struct kobject *kobj, struct kobj_attribute *attr, static ssize_t resume_store(struct kobject *kobj, struct kobj_attribute *attr, const char *buf, size_t n) { - unsigned int maj, min; dev_t res; - int ret = -EINVAL; + char *name = kstrimdup(buf, GFP_KERNEL); - if (sscanf(buf, "%u:%u", &maj, &min) != 2) - goto out; + if (name == NULL) + return -ENOMEM; - res = MKDEV(maj,min); - if (maj != MAJOR(res) || min != MINOR(res)) - goto out; + res = name_to_dev_t(name); - lock_system_sleep(); - swsusp_resume_device = res; - unlock_system_sleep(); - printk(KERN_INFO "PM: Starting manual resume from disk\n"); - noresume = 0; - software_resume(); - ret = n; - out: - return ret; + if (res != 0) { + lock_system_sleep(); + swsusp_resume_device = res; + unlock_system_sleep(); + printk(KERN_INFO "PM: Starting manual resume from disk\n"); + noresume = 0; + software_resume(); + } else { + n = -EINVAL; + } + + kfree(name); + return n; } power_attr(resume);