[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20081201211434.GD31710@nibiru.local>
Date: Mon, 1 Dec 2008 22:14:34 +0100
From: Enrico Weigelt <weigelt@...ux.de>
To: linux kernel list <linux-kernel@...r.kernel.org>
Subject: Re: New IOCTLs
* Singaravelan Nallasellan <singaravelann@...il.com> wrote:
Hi,
> The driver needs to assign an id for each open and create a sysfs
> entry based on that id and expose some properties.
>
> For example, if the driver assigns an id 2, the sysfs entry will be as below:
> /sys/class/xxx/<drivername>/2/version
>
> When the driver close is invoked, it will have to remove the entry.
>
> The issue here is that the application needs:
> 1. To know the id it should use to access properties after the open.
> 2. To have exclusive access to the sysfs entries. No other application
> should and open the entry and use it. There is a chance the the other
> application could open the entries before this application opens it.
Simply add an clone file, reading from it creates new context and
sends back its ID.
box:/ # cat /sys/class/xxx/foodriver/clone
3
box:/ # cat /sys/class/xxx/foodriver/3/version
1.0
...
To destroy the context:
box:/ # echo "release" > /sys/class/xxx/foodriver/3/ctl
cu
--
---------------------------------------------------------------------
Enrico Weigelt == metux IT service - http://www.metux.de/
---------------------------------------------------------------------
Please visit the OpenSource QM Taskforce:
http://wiki.metux.de/public/OpenSource_QM_Taskforce
Patches / Fixes for a lot dozens of packages in dozens of versions:
http://patches.metux.de/
---------------------------------------------------------------------
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists