summaryrefslogtreecommitdiff
path: root/packages/hdparm/hdparm-5.8/readahead.patch
diff options
context:
space:
mode:
authorJohn Bowler <jbowler@nslu2-linux.org>2005-08-02 00:51:34 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-08-02 00:51:34 +0000
commite62c3d12f0ab466cdfa01a49fb86674969e7179d (patch)
tree85bf98102e86950da1726f9ef04f09476fff9eac /packages/hdparm/hdparm-5.8/readahead.patch
parent471d4c7a1a8d509f8bbd71b78fcdd0ab31427547 (diff)
parentfde83d7aabf6c0f8d56dbe1e1aba0783b004bab3 (diff)
propagate from branch 'org.openembedded.dev' (head 47c2f7f436790105a8af32ec352907b8ff53aba1)
to branch 'org.openembedded.nslu2-linux' (head a69b542d88fdbf378cd19a8ef701895615c143f7)
Diffstat (limited to 'packages/hdparm/hdparm-5.8/readahead.patch')
-rw-r--r--packages/hdparm/hdparm-5.8/readahead.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/packages/hdparm/hdparm-5.8/readahead.patch b/packages/hdparm/hdparm-5.8/readahead.patch
deleted file mode 100644
index 2868d940d0..0000000000
--- a/packages/hdparm/hdparm-5.8/readahead.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-diff -Naur hdparm-5.4/hdparm.c hdparm-5.4-fix/hdparm.c
---- hdparm-5.4/hdparm.c 2004-07-14 00:36:03.000000000 +0200
-+++ hdparm-5.4-fix/hdparm.c 2003-04-18 22:29:38.000000000 +0200
-@@ -52,7 +52,7 @@
- static int flagcount = 0, do_flush = 0, is_scsi_hd = 0, is_xt_hd = 0;
- static int do_ctimings, do_timings = 0;
-
--static unsigned long set_readahead= 0, get_readahead= 0, readahead= 0;
-+static unsigned long set_readahead= 0, get_readahead= 0, readahead_state= 0;
- static unsigned long set_readonly = 0, get_readonly = 0, readonly = 0;
- static unsigned long set_unmask = 0, get_unmask = 0, unmask = 0;
- static unsigned long set_mult = 0, get_mult = 0, mult = 0;
-@@ -785,8 +785,8 @@
-
- if (set_readahead) {
- if (get_readahead)
-- printf(" setting fs readahead to %ld\n", readahead);
-- if (ioctl(fd, BLKRASET, readahead))
-+ printf(" setting fs readahead to %ld\n", readahead_state);
-+ if (ioctl(fd, BLKRASET, readahead_state))
- perror(" BLKRASET failed");
- }
- #ifdef HDIO_UNREGISTER_HWIF
-@@ -1830,7 +1830,7 @@
- case 'a':
- get_readahead = noisy;
- noisy = 1;
-- GET_NUMBER(set_readahead,readahead);
-+ GET_NUMBER(set_readahead,readahead_state);
- break;
- case 'B':
- get_apmmode = noisy;