From: Neil Brown <neilb@suse.de>
To: "Kay Sievers" <kay.sievers@vrfy.org>
Cc: "Arjan van de Ven" <arjan@infradead.org>, linux-kernel@vger.kernel.org
Subject: Re: [PATCH/RFC] allow mapping from block-device-file to sysfs entry.
Date: Thu, 9 Aug 2007 16:50:58 +1000 [thread overview]
Message-ID: <18106.47442.440816.650446@notabene.brown> (raw)
In-Reply-To: message from Kay Sievers on Tuesday August 7
On Tuesday August 7, kay.sievers@vrfy.org wrote:
> On 8/7/07, Neil Brown <neilb@suse.de> wrote:
> > On Monday August 6, arjan@infradead.org wrote:
> > > On Tue, 2007-08-07 at 16:07 +1000, Neil Brown wrote:
> > > > Suppose that in a program I have an open file descriptor for a device,
> > > > and I want to find the /sys/block information for this device.
> > > > There is currently no direct way to do this. I need to read
> > > > /sys/block/*/dev, /sys/block/*/*/dev
> > > > and match major/minor numbers with the result from fstat.
> > > >
> > > > I would like a more direct mechanism.
>
> $ udevinfo --query=path --name=sda
> /block/sda
If I interpret the result of 'strace' properly, this looks at
/dev/.udev/names/sda
and prints the result after decoding '\x2f' as '/'.
I want to go from an open file descriptor, or at least an entry in
/dev.
And I don't think I want to depend on udev if I can avoid it....
> >
> > That makes a lot of sense.
> > So it would return "block/sda/sda1" now,
>
> Every devpath always starts with a '/' in the kernel, its kind of
> weird, but we should not introduce a new variation of it. :)
Fair comment. So
/block/sda/sda1
now, and whatever later.
>
> They can be definitely longer than than 256, probably not longer than
> 512 today, but you can't be sure about that.
I guess we go for PATH_MAX then?
Any idea how to get a sysfs path in a generic way?
I tried:
struct inode *inode = filp->f_path.dentry->d_inode;
struct kobject *ko = NULL;
char *path = NULL;
if (S_ISBLK(inode->i_mode) &&
inode->i_bdev &&
inode->i_bdev->bd_disk)
ko = &inode->i_bdev->bd_disk->kobj;
if (S_ISCHR(inode->i_mode) &&
inode->i_cdev)
ko = &inode->i_cdev->kobj;
if (ko)
path = kobject_get_path(ko, GFP_KERNEL);
For /dev/sda, it returns /block/sda which is good.
For /dev/sda1 it still returns /block/sda which is not good.
For /dev/null it returns /mem which doesn't even exist in sysfs
For /dev/tty it doesn't return anything.
I'm tempted to just implement it for block devices and let someone
else worry about char devices.
Thanks,
NeilBrown
next prev parent reply other threads:[~2007-08-09 6:51 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-07 6:07 Neil Brown
2007-08-07 6:37 ` Arjan van de Ven
2007-08-07 7:13 ` Neil Brown
2007-08-07 7:41 ` Kay Sievers
2007-08-09 6:50 ` Neil Brown [this message]
2007-08-09 9:54 ` Kay Sievers
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=18106.47442.440816.650446@notabene.brown \
--to=neilb@suse.de \
--cc=arjan@infradead.org \
--cc=kay.sievers@vrfy.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
all inboxes | Powered by JetHome®