lkml.org 
[lkml]   [2013]   [Aug]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 001/001] CHAR DRIVERS: a simple device to give daemons a /sys-like interface
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


\
 
 \ /
  Last update: 2013-08-07 22:41    [W:0.087 / U:0.348 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site