From: Roland Dreier <rdreier@cisco.com>
To: linux-hotplug@vger.kernel.org
Subject: RFC: InfiniBand hotplug agent
Date: Wed, 22 Mar 2006 19:05:00 +0000 [thread overview]
Message-ID: <ada1wwu47xf.fsf@cisco.com> (raw)
I merged new feature for the InfiniBand stack in kernel 2.6.17. There
will be /sys/class/infiniband/<dev>/node_desc files. This can be used
by userspace to change the IB node description, which is retrieved by
various network management stuff. Putting the hostname in the node
description makes things a lot nicer, since it provides a link from
the IB network view back to the real world.
Right now on my systems, I'm using the script below, which takes the
output of hostname and adds it to the node description. I put this in
/lib/udev/infiniband.agent along with a udev rule like
SUBSYSTEM="infiniband", RUN+="infiniband.agent"
to run it.
So I have two questions:
- Is this script reasonable? I'm by no means a hotplug expert, and
I'd like to get critiques and suggestions for how to write a proper
agent.
- What's the right way to get this into distributions? File wishlist
bugs against udev with the rule and the script included?
Thanks,
Roland
Here's the script:
#!/bin/sh -e
#
# infiniband agent
#
cd /lib/udev/
. ./hotplug.functions
if [ "$ACTION" = "add" ]; then
DESC_PATH="/sys/$DEVPATH/node_desc"
if [ -e "$DESC_PATH" ]; then
DESC="`hostname` (`cat $DESC_PATH`)"
echo -n $DESC > $DESC_PATH
fi
fi
exit 0
-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid\x110944&bid$1720&dat\x121642
_______________________________________________
Linux-hotplug-devel mailing list http://linux-hotplug.sourceforge.net
Linux-hotplug-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel
next reply other threads:[~2006-03-22 19:05 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-03-22 19:05 Roland Dreier [this message]
2006-03-22 19:47 ` RFC: InfiniBand hotplug agent Marco d'Itri
2006-03-22 20:36 ` Roland Dreier
2006-03-23 5:13 ` Greg KH
2006-03-23 15:19 ` Scott James Remnant
2006-03-23 17:11 ` Roland Dreier
2006-03-23 23:31 ` Greg KH
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=ada1wwu47xf.fsf@cisco.com \
--to=rdreier@cisco.com \
--cc=linux-hotplug@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;
as well as URLs for NNTP newsgroup(s).