All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] driver core: introduce devtmpfs_wait_for_dev() v1
@ 2009-08-06  9:40 tom.leiming
  2009-09-17 14:01 ` Ming Lei
  0 siblings, 1 reply; 3+ messages in thread
From: tom.leiming @ 2009-08-06  9:40 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kay.sievers, akpm, Ming Lei

From: Ming Lei <tom.leiming@gmail.com>

This patch introduces devtmpfs_wait_for_dev(), which is based on devtmpfs
and can be used to remove polling for root device before mounting rootfs.

This patch also gives a generic and simple way to wait for a device in
kernel mode based on devtmpfs.

This version takes Kay Sievers's suggestion: pass relative path to
devtmpfs_wait_for_dev(), for devtmpfs has no clue where it is
mounted.

Signed-off-by: Ming Lei <tom.leiming@gmail.com>
---
 drivers/base/devtmpfs.c |   50 +++++++++++++++++++++++++++++++++++++++++++++++
 include/linux/device.h  |    7 ++++++
 2 files changed, 57 insertions(+), 0 deletions(-)

diff --git a/drivers/base/devtmpfs.c b/drivers/base/devtmpfs.c
index 51c410f..3a04252 100644
--- a/drivers/base/devtmpfs.c
+++ b/drivers/base/devtmpfs.c
@@ -30,6 +30,9 @@ static int dev_mount = 1;
 static int dev_mount;
 #endif
 
+static DECLARE_WAIT_QUEUE_HEAD(devtmpfs_waitqueue);
+
+
 static int __init mount_param(char *str)
 {
 	dev_mount = simple_strtoul(str, NULL, 0);
@@ -178,6 +181,10 @@ int devtmpfs_create_node(struct device *dev)
 
 	path_put(&nd.path);
 out:
+	/*notify others that we have created a dev node*/
+	if (!err)
+		wake_up(&devtmpfs_waitqueue);
+
 	kfree(tmp);
 	revert_creds(curr_cred);
 	return err;
@@ -310,6 +317,49 @@ out:
 	return err;
 }
 
+static int devtmpfs_query_dev(const char *nodename)
+{
+	const struct cred *curr_cred;
+	struct nameidata nd;
+	struct dentry *dentry;
+	int err;
+
+	if (!dev_mnt)
+		return -ENOENT;
+
+	curr_cred = override_creds(&init_cred);
+	err = vfs_path_lookup(dev_mnt->mnt_root, dev_mnt,
+			      nodename, LOOKUP_PARENT, &nd);
+	if (err)
+		goto out;
+
+	mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
+	dentry = lookup_one_len(nd.last.name, nd.path.dentry, nd.last.len);
+	if (!IS_ERR(dentry)) {
+		if (dentry->d_inode)
+			err = 0;
+		else
+			err = -ENOENT;
+		dput(dentry);
+	} else {
+		err = PTR_ERR(dentry);
+	}
+	mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
+
+	path_put(&nd.path);
+out:
+	revert_creds(curr_cred);
+	return err;
+}
+
+int devtmpfs_wait_for_dev(const char *dev_name, unsigned long seconds)
+{
+
+	return wait_event_timeout(devtmpfs_waitqueue,
+		devtmpfs_query_dev(dev_name) == 0,
+		seconds*HZ);
+}
+
 /*
  * If configured, or requested by the commandline, devtmpfs will be
  * auto-mounted after the kernel mounted the root filesystem.
diff --git a/include/linux/device.h b/include/linux/device.h
index 65f5b5a..1fa1b19 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -557,10 +557,17 @@ extern void wait_for_device_probe(void);
 extern int devtmpfs_create_node(struct device *dev);
 extern int devtmpfs_delete_node(struct device *dev);
 extern int devtmpfs_mount(const char *mountpoint);
+extern int devtmpfs_wait_for_dev(const char *dev_path,
+				unsigned long seconds);
 #else
 static inline int devtmpfs_create_node(struct device *dev) { return 0; }
 static inline int devtmpfs_delete_node(struct device *dev) { return 0; }
 static inline int devtmpfs_mount(const char *mountpoint) { return 0; }
+static inline int devtmpfs_wait_for_dev(const char *dev_path,
+			unsigned long seconds)
+{
+	return 0;
+}
 #endif
 
 /* drivers/base/power/shutdown.c */
-- 
1.6.0.GIT


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] driver core: introduce devtmpfs_wait_for_dev() v1
  2009-08-06  9:40 [PATCH 1/2] driver core: introduce devtmpfs_wait_for_dev() v1 tom.leiming
@ 2009-09-17 14:01 ` Ming Lei
  2009-09-18  6:06   ` Greg KH
  0 siblings, 1 reply; 3+ messages in thread
From: Ming Lei @ 2009-09-17 14:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kay.sievers, Ming Lei

2009/8/6  <tom.leiming@gmail.com>:
> From: Ming Lei <tom.leiming@gmail.com>
>
> This patch introduces devtmpfs_wait_for_dev(), which is based on devtmpfs
> and can be used to remove polling for root device before mounting rootfs.
>
> This patch also gives a generic and simple way to wait for a device in
> kernel mode based on devtmpfs.
>
> This version takes Kay Sievers's suggestion: pass relative path to
> devtmpfs_wait_for_dev(), for devtmpfs has no clue where it is
> mounted.
>
> Signed-off-by: Ming Lei <tom.leiming@gmail.com>

Hi, Greg

Since devtmpfs has been merged into mainline, would you mind
queuing  the 2 patches into your tree now?

Thanks.

-- 
Lei Ming

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] driver core: introduce devtmpfs_wait_for_dev() v1
  2009-09-17 14:01 ` Ming Lei
@ 2009-09-18  6:06   ` Greg KH
  0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2009-09-18  6:06 UTC (permalink / raw)
  To: Ming Lei; +Cc: linux-kernel, kay.sievers

On Thu, Sep 17, 2009 at 10:01:13PM +0800, Ming Lei wrote:
> 2009/8/6  <tom.leiming@gmail.com>:
> > From: Ming Lei <tom.leiming@gmail.com>
> >
> > This patch introduces devtmpfs_wait_for_dev(), which is based on devtmpfs
> > and can be used to remove polling for root device before mounting rootfs.
> >
> > This patch also gives a generic and simple way to wait for a device in
> > kernel mode based on devtmpfs.
> >
> > This version takes Kay Sievers's suggestion: pass relative path to
> > devtmpfs_wait_for_dev(), for devtmpfs has no clue where it is
> > mounted.
> >
> > Signed-off-by: Ming Lei <tom.leiming@gmail.com>
> 
> Hi, Greg
> 
> Since devtmpfs has been merged into mainline, would you mind
> queuing  the 2 patches into your tree now?

Will do, when the linux-next tree opens back up for .33 patches.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-09-18  6:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-08-06  9:40 [PATCH 1/2] driver core: introduce devtmpfs_wait_for_dev() v1 tom.leiming
2009-09-17 14:01 ` Ming Lei
2009-09-18  6:06   ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.