From: Greg KH <greg@kroah.com>
To: Kumba <kumba@gentoo.org>
Cc: linux-kernel@vger.kernel.org
Subject: Re: Can I nest kobjects to create directories under parent directories for my driver?
Date: Wed, 2 Mar 2011 22:19:50 -0800 [thread overview]
Message-ID: <20110303061950.GC32245@kroah.com> (raw)
In-Reply-To: <4D6EBB5A.7080307@gentoo.org>
On Wed, Mar 02, 2011 at 04:49:14PM -0500, Kumba wrote:
> On 03/02/2011 15:38, Greg KH wrote:
> >
> >That's nice, but it really isn't a good idea to do things this deep.
> >Userspace tools will not be able to find things properly (like libudev)
> >and your kernel code will get very messy (as you have found out.)
> >
> >Why not look at how the other rtc drivers work, they don't nest things
> >this deep and you need to sick with the standard userspace api and not
> >invent a new one if at all possible.
> >
> >But to answer your question, you can do this, but I strongly discourage
> >it.
>
> From the way sysfs seems to work, I can see that it encourages as
> little nesting as possible.
No, not at all, just you don't want to do nesting "on your own".
> So this is probably the way I will go
> and just call the entries "regs_ctrla" through "regs_ctrl4b". It
> still conveys the relevant information and is easily doable through
> the existing userspace framework.
That's good.
But again, please look at how other rtc drivers did this so you aren't
creating an api that is unique.
> How does one nest kobjects, though? Are ksets the only real way?
First off, a driver should _never_ need to deal with a kobject. Or a
struct device even, that's up to the bus code to wrap up, and even then,
it doesn't deal with kobjects.
You nest 'struct device' objects, as they nest very easy and is how the
kobject stuff is implemented for "real" devices in the kernel.
> Or is it doable through linking kobjects to each other? If the
> latter is possible, how does one keep the reference to the device
> structure intact? I figure the right use of backcasting (through
> container_of) is one way, but it definitely seems like I am treading
> new territory with such an approach.
You can do it on your own, but it's tricky, and I don't recommend it at
all, especially in a driver. Actually never in a driver, just don't do
it.
But if you are curious, look at the kobject documentation in the kernel
tree. It has working examples and hopefully everything you need if you
are curious.
But again, don't do it, your code will be rejected :)
> I did learn one useful thing through this -- the use of a common
> show/store function for each register (using strncmp to look up
> which bit was accessed). I was originally doing a single show/store
> pair for each, which added major code bloat and resulted in a ~80kb+
> module.
Yes, that is a nice thing to make code smaller.
thanks,
greg k-h
prev parent reply other threads:[~2011-03-03 6:23 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-01 3:31 Can I nest kobjects to create directories under parent directories for my driver? Kumba
2011-03-02 20:38 ` Greg KH
2011-03-02 21:49 ` Kumba
2011-03-03 6:19 ` Greg KH [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110303061950.GC32245@kroah.com \
--to=greg@kroah.com \
--cc=kumba@gentoo.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox