[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
rpms/kernel/FC-5 linux-2.6-scsi-noisy-ioctl.patch, NONE, 1.1 patch-2.6.17.7.bz2.sign, NONE, 1.1 .cvsignore, 1.410, 1.411 kernel-2.6.spec, 1.2163, 1.2164 sources, 1.351, 1.352 upstream, 1.320, 1.321 linux-2.6-powernow-k7-smp.patch, 1.1, NONE patch-2.6.17.6.bz2.sign, 1.1, NONE
- From: fedora-cvs-commits redhat com
- To: fedora-cvs-commits redhat com
- Subject: rpms/kernel/FC-5 linux-2.6-scsi-noisy-ioctl.patch, NONE, 1.1 patch-2.6.17.7.bz2.sign, NONE, 1.1 .cvsignore, 1.410, 1.411 kernel-2.6.spec, 1.2163, 1.2164 sources, 1.351, 1.352 upstream, 1.320, 1.321 linux-2.6-powernow-k7-smp.patch, 1.1, NONE patch-2.6.17.6.bz2.sign, 1.1, NONE
- Date: Sat, 29 Jul 2006 13:43:55 -0400
Author: davej
Update of /cvs/dist/rpms/kernel/FC-5
In directory cvs.devel.redhat.com:/tmp/cvs-serv19489
Modified Files:
.cvsignore kernel-2.6.spec sources upstream
Added Files:
linux-2.6-scsi-noisy-ioctl.patch patch-2.6.17.7.bz2.sign
Removed Files:
linux-2.6-powernow-k7-smp.patch patch-2.6.17.6.bz2.sign
Log Message:
* Sat Jul 29 2006 Dave Jones <davej redhat com>
- Silence noisy SCSI ioctl. (#200638)
linux-2.6-scsi-noisy-ioctl.patch:
scsi_ioctl.c | 5 +----
1 files changed, 1 insertion(+), 4 deletions(-)
--- NEW FILE linux-2.6-scsi-noisy-ioctl.patch ---
--- linux-2.6.17.noarch/drivers/scsi/scsi_ioctl.c~ 2006-07-29 13:38:07.000000000 -0400
+++ linux-2.6.17.noarch/drivers/scsi/scsi_ioctl.c 2006-07-29 13:38:52.000000000 -0400
@@ -110,11 +110,8 @@ static int ioctl_internal_command(struct
sshdr.asc, sshdr.ascq);
break;
case NOT_READY: /* This happens if there is no disc in drive */
- if (sdev->removable && (cmd[0] != TEST_UNIT_READY)) {
- printk(KERN_INFO "Device not ready. Make sure"
- " there is a disc in the drive.\n");
+ if (sdev->removable)
break;
- }
case UNIT_ATTENTION:
if (sdev->removable) {
sdev->changed = 1;
--- NEW FILE patch-2.6.17.7.bz2.sign ---
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (GNU/Linux)
Comment: See http://www.kernel.org/signature.html for info
iD8DBQBExZPlyGugalF9Dw4RAnpEAJ9FQAEaJdFajC/Dg/ObCOB1lZfGOACaAqYS
Jwp3QExOrl/EazZt0O/b8jU=
=zeJg
-----END PGP SIGNATURE-----
Index: .cvsignore
===================================================================
RCS file: /cvs/dist/rpms/kernel/FC-5/.cvsignore,v
retrieving revision 1.410
retrieving revision 1.411
diff -u -r1.410 -r1.411
--- .cvsignore 15 Jul 2006 19:57:53 -0000 1.410
+++ .cvsignore 29 Jul 2006 17:43:53 -0000 1.411
@@ -3,4 +3,4 @@
kernel-2.6.17
linux-2.6.17.tar.bz2
xen-20060708.tar.bz2
-patch-2.6.17.6.bz2
+patch-2.6.17.7.bz2
Index: kernel-2.6.spec
===================================================================
RCS file: /cvs/dist/rpms/kernel/FC-5/kernel-2.6.spec,v
retrieving revision 1.2163
retrieving revision 1.2164
diff -u -r1.2163 -r1.2164
--- kernel-2.6.spec 27 Jul 2006 05:09:37 -0000 1.2163
+++ kernel-2.6.spec 29 Jul 2006 17:43:53 -0000 1.2164
@@ -231,7 +231,7 @@
#
# Patches 0 through 100 are meant for core subsystem upgrades
#
-Patch1: patch-2.6.17.6.bz2
+Patch1: patch-2.6.17.7.bz2
# Patches 100 through 500 are meant for architecture patches
@@ -327,6 +327,7 @@
# SCSI bits.
Patch1102: linux-2.6-scsi-advansys-pcitable.patch
Patch1103: linux-2.6-iscsi-update-to-2-6-18-upstream.patch
+Patch1104: linux-2.6-scsi-noisy-ioctl.patch
# NFS bits.
Patch1200: linux-2.6-NFSD-non-null-getxattr.patch
@@ -358,7 +359,6 @@
Patch1750: linux-2.6-serial-resume.patch
Patch1760: linux-2.6-suspend-slab-warnings.patch
Patch1770: linux-2.6-optimise-spinlock-debug.patch
-Patch1780: linux-2.6-powernow-k7-smp.patch
Patch1790: linux-2.6-console-suspend.patch
# SELinux/audit patches.
@@ -864,6 +864,8 @@
# iSCSI driver update that can be dropped when kernel is rebased
# against a kernel that has the SCSI updates for 2.6.18
%patch1103 -p1
+# Silence noisy SCSI ioctl.
+%patch1104 -p1
#
# Various upstream NFS/NFSD fixes.
@@ -922,8 +924,6 @@
%patch1760 -p1
# Speed up spinlock debug.
%patch1770 -p1
-# Fix up powernow-k7 to work on SMP kernels.
-%patch1780 -p1
# Console fixes for suspend/resume
%patch1790 -p1
@@ -1550,6 +1550,12 @@
%endif
%changelog
+* Sat Jul 29 2006 Dave Jones <davej redhat com>
+- Silence noisy SCSI ioctl. (#200638)
+
+* Fri Jul 28 2006 Dave Jones <davej redhat com>
+- 2.6.17.7
+
* Thu Jul 27 2006 Rik van Riel <riel redhat com>
- reduce hypervisor stack use with -O2, this really fixes bug (#198932)
Index: sources
===================================================================
RCS file: /cvs/dist/rpms/kernel/FC-5/sources,v
retrieving revision 1.351
retrieving revision 1.352
diff -u -r1.351 -r1.352
--- sources 15 Jul 2006 19:57:53 -0000 1.351
+++ sources 29 Jul 2006 17:43:53 -0000 1.352
@@ -1,3 +1,3 @@
37ddefe96625502161f075b9d907f21e linux-2.6.17.tar.bz2
5f0d888de4286f08e5661e81b95c69a8 xen-20060708.tar.bz2
-d8598f06ed1ce41b4ea51d9eb7ed4277 patch-2.6.17.6.bz2
+f2c255cdf482ba589151f5da03fed418 patch-2.6.17.7.bz2
Index: upstream
===================================================================
RCS file: /cvs/dist/rpms/kernel/FC-5/upstream,v
retrieving revision 1.320
retrieving revision 1.321
diff -u -r1.320 -r1.321
--- upstream 15 Jul 2006 19:57:53 -0000 1.320
+++ upstream 29 Jul 2006 17:43:53 -0000 1.321
@@ -1,2 +1,2 @@
linux-2.6.17.tar.bz2
-patch-2.6.17.6.bz2
+patch-2.6.17.7.bz2
--- linux-2.6-powernow-k7-smp.patch DELETED ---
--- patch-2.6.17.6.bz2.sign DELETED ---
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]