Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754738Ab0DZTZN (ORCPT ); Mon, 26 Apr 2010 15:25:13 -0400 Received: from iolanthe.rowland.org ([192.131.102.54]:60155 "HELO iolanthe.rowland.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1753917Ab0DZTZK (ORCPT ); Mon, 26 Apr 2010 15:25:10 -0400 Date: Mon, 26 Apr 2010 15:25:09 -0400 (EDT) From: Alan Stern X-X-Sender: stern@iolanthe.rowland.org To: =?ISO-8859-1?Q?Arve_Hj=F8nnev=E5g?= cc: Pavel Machek , Len Brown , , , Jesse Barnes , Magnus Damm , Subject: Re: [linux-pm] [PATCH 2/9] PM: suspend_block: Add driver to access suspend blockers from user-space In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2241 Lines: 55 On Sun, 25 Apr 2010, Arve Hj?nnev?g wrote: > >> > >> > +User-space API > >> > >> > +============== > >> > >> > + > >> > >> > +To create a suspend_blocker from user-space, open the suspend_blocker device: > >> > >> > + ? ?fd = open("/dev/suspend_blocker", O_RDWR | O_CLOEXEC); > >> > >> > +then call: > >> > >> > + ? ?ioctl(fd, SUSPEND_BLOCKER_IOCTL_INIT(strlen(name)), name); > >> > >> > >> > >> > >> > >> This seems like very wrong idea -- it uses different ioctl number for > >> > >> each length AFAICT. > >> > > > >> > > How about specifying the name by an ordinary write() call instead of > >> > > by an ioctl()? > >> > > > >> > > >> > I prefer using ioctls. We have three operations at the moment. Init, > >> > block and unblock. If we do init with write but block and unblock > >> > using ioctls, it would be pretty strange. Specifying a command and > >> > >> Why would it be "strange"? > > > > Why indeed? ?Using write() is the natural way to pass a data buffer > > into the kernel, especially a variable-length buffer. > > > > Mixing ioctl() and write() might seem strange at first, but it has > > plenty of precedent. ?Consider adjusting the settings for a serial > > port, for example. > > > That sound like to opposite situation to me. It uses ioctls for setup > and read/write access the data stream. Or you could say that it uses ioctls to send commands and read/write to pass data. That's pretty much what you would be doing. Let's put it another way: You find it excessively strange to do init using write and to send commands via ioctl, but you don't find it strange to abuse the ioctl number code for passing the string length? The old saying about motes and beams applies here... If you insist on using ioctl for init, you should use the standard convention for passing variable-length data. The userspace program sets up a fixed-size buffer containing a pointer to the name and the name's length, and it passes the buffer's address as the ioctl argument. Alan Stern -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/