From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757337Ab0EZKVP (ORCPT ); Wed, 26 May 2010 06:21:15 -0400 Received: from bombadil.infradead.org ([18.85.46.34]:60379 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757159Ab0EZKVN convert rfc822-to-8bit (ORCPT ); Wed, 26 May 2010 06:21:13 -0400 Subject: Re: [PATCH 1/8] PM: Opportunistic suspend support. From: Peter Zijlstra To: Arve =?ISO-8859-1?Q?Hj=F8nnev=E5g?= Cc: Florian Mickler , "Rafael J. Wysocki" , Alan Stern , Dmitry Torokhov , Linux-pm mailing list , Kernel development list , Len Brown , Pavel Machek , Randy Dunlap , Andrew Morton , Andi Kleen , Cornelia Huck , Tejun Heo , Jesse Barnes , Nigel Cunningham , Ming Lei , Wu Fengguang , Maxim Levitsky , linux-doc@vger.kernel.org, Matthew Garrett , Greg KH , tytso@mit.edu, James Bottomley In-Reply-To: References: <201005252344.37639.rjw@sisk.pl> <1274863342.5882.4850.camel@twins> <20100526112303.3fef15a4@schatten.dmk.lab> <1274866402.5882.5051.camel@twins> <1274868384.5882.5169.camel@twins> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8BIT Date: Wed, 26 May 2010 12:21:02 +0200 Message-ID: <1274869262.5882.5222.camel@twins> Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 2010-05-26 at 03:17 -0700, Arve Hjønnevåg wrote: > > With a single suspend manager process that manages the suspend state you > > can achieve the same goal. > > > > Yes we don't need the /dev interface, but it is useful. Without it any > program that needs to block suspend has to make a blocking ipc call > into the suspend manager process. Android already does this for java > code, but system processes written in C block suspend directly with > the kernel since they cannot use the java APIs. So provide a C interface to it as well? Surely you can have the java thing have a unix socket or something a C app can talk to. That shouldn't be hard at all. Or make the suspend manager a C proglet and provide a JNI interface, or whatever.