public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: ioctls
@ 2003-04-09 12:26 Andries.Brouwer
  0 siblings, 0 replies; 5+ messages in thread
From: Andries.Brouwer @ 2003-04-09 12:26 UTC (permalink / raw)
  To: arjanv, zaitcev; +Cc: Andries.Brouwer, linux-kernel

> maintain glibc-kernelheaders as a community tarball
> at kernel.org somewhere.

Maintaining that separately would be a large amount of work.
Work that is never finished.

Splitting up the kernel headers is also a large amount of work,
but after a finite amount of time it will have been done.

^ permalink raw reply	[flat|nested] 5+ messages in thread
* ioctls
@ 2003-04-08 22:24 Andries.Brouwer
  0 siblings, 0 replies; 5+ messages in thread
From: Andries.Brouwer @ 2003-04-08 22:24 UTC (permalink / raw)
  To: linux-kernel

This night I did some ioctl work, and the longer
one looks at this stuff, the messier it turns out to be.

(i)
First one has the definitions:

#define _IOR(type,nr,size)      _IOC(_IOC_READ,(type),(nr),sizeof(size))
#define _IOW(type,nr,size)      _IOC(_IOC_WRITE,(type),(nr),sizeof(size))

These are really unfortunate. I suppose I'll submit a patch
to change the definition into

#define _IOR(group,nr,argtype)  _IOC(_IOC_READ,(group),(nr),sizeof(argtype))

Really a lot of people have been fooled into believing that
the parameter "size" is a size.  But it is a data type.


(ii)
In all cases where the size is wrong (a largish number of cases),
do we want to define the "correct" ioctls, and leave the old
ones with _OLD suffix as deprecated?


(iii)
For userspace it is difficult to get ioctl definitions.
All the obscure ioctls live in <linux/foo.h> and including
lots of such headers is a sure way to get a source that
doesnt compile. Typedef clashes, things outside #ifdef __KERNEL__
that use things inside, etc etc.
Would anyone object against creating a directory with a
name like kernelapi and slowly moving manifest constants,
ioctl definitions, and definitions of the argument structs
to files there?
This is easy since there is no flag day. File by file things
can be moved, leaving a #include in <linux/foo.h>.
An attempt can be made to keep the namespace under kernelapi clean.
Now userspace can include <kernelapi/foo.h> and __KERNEL__ can disappear.

Andries

^ permalink raw reply	[flat|nested] 5+ messages in thread
* IOCTLS
@ 2001-06-09  6:39 Prasad
  0 siblings, 0 replies; 5+ messages in thread
From: Prasad @ 2001-06-09  6:39 UTC (permalink / raw)
  To: linux-kernel


first of all i am sorry to post this message here without actually knowing
if this could be asked here...

Where can i find the documentation about ioctls, specially the ioctls
listed in asm/ioctls.h

Thanks in advance

Prasad<prasad_s@gdit.iiit.net>


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2003-04-09 12:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <mailman.1049841061.29063.linux-kernel2news@redhat.com>
2003-04-09  5:06 ` ioctls Pete Zaitcev
2003-04-09  9:38   ` ioctls Arjan van de Ven
2003-04-09 12:26 ioctls Andries.Brouwer
  -- strict thread matches above, loose matches on Subject: below --
2003-04-08 22:24 ioctls Andries.Brouwer
2001-06-09  6:39 IOCTLS Prasad

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox