<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Mar 7, 2016 at 3:29 PM, Greg KH <span dir="ltr">&lt;<a href="mailto:greg@kroah.com" target="_blank">greg@kroah.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On Mon, Mar 07, 2016 at 03:21:44PM -0500, Kenneth Adam Miller wrote:<br>
&gt;<br>
&gt;<br>
&gt; On Mon, Mar 7, 2016 at 3:17 PM, Greg KH &lt;<a href="mailto:greg@kroah.com">greg@kroah.com</a>&gt; wrote:<br>
&gt;<br>
&gt;     On Mon, Mar 07, 2016 at 03:00:50PM -0500, Kenneth Adam Miller wrote:<br>
&gt;     &gt; I have a driver that manages three sets of identical data structures that<br>
&gt;     &gt; differ only in address values. Currently, I pray that the device file to<br>
&gt;     which<br>
&gt;     &gt; I have callbacks mapped for the driver gets called sequentially, because<br>
&gt;     there<br>
&gt;     &gt; are pairs of mmap&#39;s that need to be made. I know that this isn&#39;t the most<br>
&gt;     ideal<br>
&gt;     &gt; way to do it, so I&#39;m searching for a better way rather than to swap out<br>
&gt;     the<br>
&gt;     &gt; values on each method call. <br>
&gt;     &gt;<br>
&gt;     &gt; There are several things I am aware of but for each one I have questions:<br>
&gt;     &gt; 1) there are kernel module parameters<br>
&gt;     &gt; If I use kernel module parameters, I need to be able to insert the kernel<br>
&gt;     &gt; module three times in order to have each one have a distinct set of<br>
&gt;     global<br>
&gt;     &gt; memory and mapped callbacks to distinct files. Can that be done? Second,<br>
&gt;     I will<br>
&gt;     &gt; need to compile the driver statically later. How can I pass those<br>
&gt;     parameters<br>
&gt;     &gt; that would otherwise be on the command line in statically?<br>
&gt;<br>
&gt;     Never use kernel module parameters for a driver, nor for any other<br>
&gt;     kernel module you create.  They are global and don&#39;t work for<br>
&gt;     device-specific issues.<br>
&gt;<br>
&gt;     &gt; 2) I can compile the driver in three times with a compile time flag. This<br>
&gt;     is<br>
&gt;     &gt; the simplest and easiest, but it requires some buildroot and makefile foo<br>
&gt;     that<br>
&gt;     &gt; I think is a dirty hack.<br>
&gt;<br>
&gt;     It&#39;s also never accepted, don&#39;t do that.<br>
&gt;<br>
&gt;     &gt; 3) I could have the init function create three separate files, since it<br>
&gt;     is on<br>
&gt;     &gt; init that I discover what my values are. But then I have to also<br>
&gt;     associate<br>
&gt;     &gt; identical functions that reference global variables in the kernel object.<br>
&gt;     &gt; Duplicating the code would be worse that compiling the same code three<br>
&gt;     times<br>
&gt;     &gt; with a kernel parameter, even though that would help me solve my distinct<br>
&gt;     &gt; globals problem. So how could I parameterisze a char device with data<br>
&gt;     specific<br>
&gt;     &gt; to the instance?<br>
&gt;<br>
&gt;     open() gives you the hook to do so, please just do that.  There&#39;s a<br>
&gt;     whole kernel tree full of examples of how to do this, take a look at<br>
&gt;     existing code please.<br>
&gt;<br>
&gt;<br>
&gt; After I had the idea in the second email, I think that using the kernel api to<br>
&gt; distinguish which char device a callback maps to in order to utilize the<br>
&gt; corresponding data is the best way.<br>
&gt;<br>
&gt; If I could do something along the lines of retrieving the file name, as in a<br>
&gt; char *,<br>
<br>
</div></div>There is no such &quot;thing&quot; in the kernel (think of symlinks, or different<br>
names for the same major:minor pair).<br>
<span class=""><br>
&gt; from the file * that is passed in with the callback, or distinguish any<br>
&gt; one of these:<br>
&gt;<br>
&gt; static dev_t LSKSMM_dev;<br>
&gt; static struct cdev LSKSMM_cdev;<br>
&gt; static struct class *LSKSMM_class;<br>
&gt; static struct device *LSKSMM_device;<br>
<br>
</span>Those are all different things, none of them get passed into open().<br>
<br>
I don&#39;t think you have thought this through very far, where is your<br>
source code to take a look at it?<br>
<span class=""><br>
&gt; which are also created on module init, it would really make things convenient<br>
&gt; and easy. I&#39;m currently digging around in the kernel headers, but I think<br>
&gt; probably somebody somewhere knows what I&#39;m looking for. Some unique field that<br>
&gt; I can retain on init that I can get back in my mmap/ioctl call to recognize<br>
&gt; what data to use.<br>
<br>
</span>Again, it&#39;s all provided directly to you in your open() call, what&#39;s<br>
wrong with that?<br></blockquote><div><br></div><div>Currently, my kernel driver is opened twice and mmap&#39;d twice by each process. I have three processes, but I have to initialize them on startup with a startup script. So they come up as daemons, racing, which is a problem. I know that on init I can create three entries in /dev/, distinguished by a number or something that makes the device unique. When a mmap call hits is when I need to know what specific file that the mmap corresponds to. I have to identify it associatively by name or by the identifiers that the kernel consumes for it&#39;s internal class and/or device entry. I don&#39;t know that I could do that with what I&#39;m given in open, because while I&#39;m sure that provides some information, it doesn&#39;t provide the the information when I need it. I don&#39;t have anything in my open callback except a printk. My mmap does all the work, and has to distinguish the right private item to use with what device file.</div><div><br></div><div>I don&#39;t know the layout of the structure or the api so well that I could do that off the top of my head.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
thanks,<br>
<br>
greg k-h<br>
</blockquote></div><br></div></div>