linux-hotplug.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] udevd: avoid overhead of calling rmdir on non-empty directories
@ 2008-10-18 12:39 Alan Jenkins
  2008-10-18 13:30 ` Kay Sievers
  0 siblings, 1 reply; 2+ messages in thread
From: Alan Jenkins @ 2008-10-18 12:39 UTC (permalink / raw)
  To: linux-hotplug

Unfortunately the linux rmdir implementation unhashes the dentry
even when the directory is not removed.  This is apparently by
design (for filesystems that don't allow deleting open files).

Results from time(1) and oprofile follow.

Before:

0.35user 0.90system
samples  %        image name               symbol name                                                                    
608       9.6738  vmlinux                  shrink_dcache_parent                                                           
293       4.6619  vmlinux                  copy_page_c                                                                    
271       4.3119  vmlinux                  copy_page_range                                                                
257       4.0891  udevd                    udev_rules_iter_next

After:

0.31user 0.67system
samples  %        image name               symbol name
361       5.0419  vmlinux                  copy_page_range
322       4.4972  udevd                    udev_rules_iter_next
300       4.1899  vmlinux                  copy_page_c

Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk>

diff --git a/udev/udevd.c b/udev/udevd.c
index 576f9e8..4b0c2e8 100644
--- a/udev/udevd.c
+++ b/udev/udevd.c
@@ -109,8 +109,8 @@ static void export_event_state(struct udev_event *event, enum event_state state)
 
 	switch (state) {
 	case EVENT_QUEUED:
-		unlink(filename_failed);
-		delete_path(event->udev, filename_failed);
+		if(unlink(filename_failed) = 0)
+			delete_path(event->udev, filename_failed);
 		create_path(event->udev, filename);
 		udev_selinux_setfscreatecon(event->udev, filename, S_IFLNK);
 		symlink(udev_device_get_devpath(event->dev), filename);
@@ -131,12 +131,15 @@ static void export_event_state(struct udev_event *event, enum event_state state)
 				info(event->udev, "renamed devpath, moved failed state of '%s' to %s'\n",
 				     udev_device_get_devpath_old(event->dev), udev_device_get_devpath(event->dev));
 		} else {
-			unlink(filename_failed);
-			delete_path(event->udev, filename_failed);
+			if (unlink(filename_failed) = 0)
+				delete_path(event->udev, filename_failed);
 		}
 
 		unlink(filename);
-		delete_path(event->udev, filename);
+
+		/* clean up possibly empty queue directory */
+		if (udev_list_is_empty(&exec_list) && udev_list_is_empty(&running_list))
+			delete_path(event->udev, filename);
 		break;
 	case EVENT_FAILED:
 		/* move failed event to the failed directory */
@@ -144,7 +147,8 @@ static void export_event_state(struct udev_event *event, enum event_state state)
 		rename(filename, filename_failed);
 
 		/* clean up possibly empty queue directory */
-		delete_path(event->udev, filename);
+		if (udev_list_is_empty(&exec_list) && udev_list_is_empty(&running_list))
+			delete_path(event->udev, filename);
 		break;
 	}
 



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

* Re: [PATCH] udevd: avoid overhead of calling rmdir on non-empty directories
  2008-10-18 12:39 [PATCH] udevd: avoid overhead of calling rmdir on non-empty directories Alan Jenkins
@ 2008-10-18 13:30 ` Kay Sievers
  0 siblings, 0 replies; 2+ messages in thread
From: Kay Sievers @ 2008-10-18 13:30 UTC (permalink / raw)
  To: linux-hotplug

On Sat, Oct 18, 2008 at 2:39 PM, Alan Jenkins
<alan-jenkins@tuffmail.co.uk> wrote:
> Unfortunately the linux rmdir implementation unhashes the dentry
> even when the directory is not removed.  This is apparently by
> design (for filesystems that don't allow deleting open files).
>
> Results from time(1) and oprofile follow.
>
> Before:
> 0.35user 0.90system

> After:
> 0.31user 0.67system

Nice! Applied.

Thanks,
Kay

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

end of thread, other threads:[~2008-10-18 13:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-18 12:39 [PATCH] udevd: avoid overhead of calling rmdir on non-empty directories Alan Jenkins
2008-10-18 13:30 ` Kay Sievers

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).