Re: [PATCH 001/001] CHAR DRIVERS: a simple device to give daemons a/sys-like interface

From: Greg Kroah-Hartman
Date: Wed Aug 07 2013 - 15:26:01 EST


On Wed, Aug 07, 2013 at 12:02:03PM -0700, Bob Smith wrote:
> Greg
> This sample program shows what I'm trying to accomplish.
>
> I still owe you a reply for your previous posting
>
> thanks
> Bob Smith
>
>
> /*
> * pxtest.c : This program demonstrates the use of a proxy device.
> *
> * The program generates some data once a second and tries to send
> * it to /dev/proxyout. The original data is modified by adding
> * an offset to each input character. The offset can be set or
> * viewed at the proxy device node /dev/proxyctrl.
> *
> * Typical usage might be
> * sudo modprobe proxy
> * PROXYDEV=`grep proxy /proc/devices | cut -d\ -f 1`
> * sudo mknod /dev/proxyout c $PROXYDEV 0
> * sudo mknod /dev/proxyctrl c $PROXYDEV 1

No one should ever have to mknod a device node, the kernel should do
this for us automatically, please don't regress to the 1990's...

> * sudo chmod 666 /dev/proxyout /dev/proxyctrl

That's mighty permissive :(

> * gcc -o pxtest pxtest.c
> * ./pxtest &
> * cat /dev/proxyout # view the output
> * (switch to another terminal window)
> * cat /dev/proxyctrl # what is the offset?
> * echo 2 > /dev/proxyctrl # set offset to 2
> */

I really don't understand this, you just have two programs talking to
each other, passing the data blindly through the kernel. Again, we
already have over 10 different ways to do IPC these days, are you _sure_
that _none_ of them work for you like this? You have gone and looked at
them all, right?

thanks,

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/