rpms/udev/devel start_udev, 1.89, 1.90 udev-151-virtio.patch, 1.1, 1.2 udev.spec, 1.305, 1.306

Harald Hoyer harald at fedoraproject.org
Mon Mar 22 13:34:41 UTC 2010


Author: harald

Update of /cvs/pkgs/rpms/udev/devel
In directory cvs01.phx2.fedoraproject.org:/tmp/cvs-serv23121

Modified Files:
	start_udev udev-151-virtio.patch udev.spec 
Log Message:
* Mon Mar 22 2010 Harald Hoyer <harald at redhat.com> 151-7
- touch with "--no-create", will not use open() 
  and trigger devs/watchdogs (bug #575417)



Index: start_udev
===================================================================
RCS file: /cvs/pkgs/rpms/udev/devel/start_udev,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -p -r1.89 -r1.90
--- start_udev	22 Mar 2010 10:08:46 -0000	1.89
+++ start_udev	22 Mar 2010 13:34:41 -0000	1.90
@@ -59,7 +59,7 @@ fi
 touch_recursive() {
 	( cd $1;
 	for i in *; do 
-		[[ -c "$i" || -b "$i" ]] && touch "$i"
+		[[ -c "$i" || -b "$i" ]] && touch --no-create "$i"
 		[ -d "$i" ] && touch_recursive "$i"
 	done )
 	return 0

udev-151-virtio.patch:
 50-udev-default.rules |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Index: udev-151-virtio.patch
===================================================================
RCS file: /cvs/pkgs/rpms/udev/devel/udev-151-virtio.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- udev-151-virtio.patch	19 Mar 2010 12:48:14 -0000	1.1
+++ udev-151-virtio.patch	22 Mar 2010 13:34:41 -0000	1.2
@@ -21,7 +21,7 @@ index f8556d1..da1535f 100644
  
  # virtio serial / console ports
 -KERNEL=="vport*", SYMLINK+="virtio-ports/$attr{name}"
-+KERNEL=="vport*", ATTRS{name}=="?*", SYMLINK+="virtio-ports/$attr{name}"
++KERNEL=="vport*", ATTR{name}=="?*", SYMLINK+="virtio-ports/$attr{name}"
  
  # mem
  KERNEL=="null|zero|full|random|urandom", MODE="0666"


Index: udev.spec
===================================================================
RCS file: /cvs/pkgs/rpms/udev/devel/udev.spec,v
retrieving revision 1.305
retrieving revision 1.306
diff -u -p -r1.305 -r1.306
--- udev.spec	22 Mar 2010 10:08:46 -0000	1.305
+++ udev.spec	22 Mar 2010 13:34:41 -0000	1.306
@@ -5,7 +5,7 @@
 Summary: A userspace implementation of devfs
 Name: udev
 Version: 151
-Release: 6%{?dist}
+Release: 7%{?dist}
 License: GPLv2
 Group: System Environment/Base
 Provides: udev-persistent = %{version}-%{release}
@@ -399,6 +399,10 @@ rm -rf $RPM_BUILD_ROOT
 %attr(0644,root,root) %{_libdir}/pkgconfig/gudev-1.0*
 
 %changelog
+* Mon Mar 22 2010 Harald Hoyer <harald at redhat.com> 151-7
+- touch with "--no-create", will not use open() 
+  and trigger devs/watchdogs (bug #575417)
+
 * Mon Mar 22 2010 Harald Hoyer <harald at redhat.com> 151-6
 - fixed return code of touching the device nodes [FAIL] -> [OK]
 



More information about the scm-commits mailing list