Re: ioctl32 consolidation

Max Krasnyansky (maxk@qualcomm.com)
Thu, 20 Feb 2003 17:31:43 -0800


At 04:36 PM 2/20/2003, David S. Miller wrote:
> From: Max Krasnyansky <maxk@qualcomm.com>
> Date: Thu, 20 Feb 2003 14:56:22 -0800
>
> Eventually we'll be able to kill ugly mess like arch/sparc64/kernel/ioctl32.c.
> That stuff really belongs to the actual subsystems that implement those ioctls.
>
>Not really possible with things like SIOCDEVPRIVATE...
>Those need special processing and even that is insufficient.
Hmm. It seems to that all you need for SIOCDEVPRIVATE is ability to register
ranges of ioctls.
i.e. something like this
int register_ioctl32_conversion_rage(uint start, uint end, handler);

net/core/dev.c
register_ioctl32_conversion_range(SIOCDEVPRIVATE, SIOCDEVPRIVATE + 15, siocdevprivate_ioctl);

Am I missing something here ?

Max

-
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/