summaryrefslogtreecommitdiffstats
path: root/target/device/AMD/DBAu1500/kernel-patches/028-cdrom_oexcl.patch
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2006-12-13 12:18:08 +0000
committerEric Andersen <andersen@codepoet.org>2006-12-13 12:18:08 +0000
commit6e2b255ad85b1227262872d127a94bf3aac153a6 (patch)
tree1223379b3fb35c385ca08e3a065e0bf40d8075e7 /target/device/AMD/DBAu1500/kernel-patches/028-cdrom_oexcl.patch
parent0ac8b4c2987f12f27f39183c2cd9108736c6e28d (diff)
downloadbuildroot-novena-6e2b255ad85b1227262872d127a94bf3aac153a6.tar.gz
buildroot-novena-6e2b255ad85b1227262872d127a94bf3aac153a6.zip
make this target current
Diffstat (limited to 'target/device/AMD/DBAu1500/kernel-patches/028-cdrom_oexcl.patch')
-rw-r--r--target/device/AMD/DBAu1500/kernel-patches/028-cdrom_oexcl.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/target/device/AMD/DBAu1500/kernel-patches/028-cdrom_oexcl.patch b/target/device/AMD/DBAu1500/kernel-patches/028-cdrom_oexcl.patch
deleted file mode 100644
index 577cdb0b4..000000000
--- a/target/device/AMD/DBAu1500/kernel-patches/028-cdrom_oexcl.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- orig/drivers/cdrom/cdrom.c 2004-12-07 22:55:38.000000000 -0700
-+++ linux-2.6.10-rc3/drivers/cdrom/cdrom.c 2004-12-07 22:55:38.000000000 -0700
-@@ -997,6 +997,10 @@
-
- cdinfo(CD_OPEN, "entering cdrom_open\n");
-
-+ /* If the device is opened O_EXCL but there are other openers, return busy */
-+ if ( (fp->f_flags & O_EXCL) && (cdi->use_count>0) )
-+ return -EBUSY;
-+
- /* if this was a O_NONBLOCK open and we should honor the flags,
- * do a quick open without drive/disc integrity checks. */
- cdi->use_count++;