Bug 16174
Summary: | block devices won't build as modules: linux-2.2.16-sard.patch | ||||||
---|---|---|---|---|---|---|---|
Product: | [Retired] Red Hat Raw Hide | Reporter: | Michael Tokarev <mjt> | ||||
Component: | kernel | Assignee: | Dave Jones <davej> | ||||
Status: | CLOSED WONTFIX | QA Contact: | |||||
Severity: | medium | Docs Contact: | |||||
Priority: | medium | ||||||
Version: | 1.0 | CC: | pfrields, sct | ||||
Target Milestone: | --- | ||||||
Target Release: | --- | ||||||
Hardware: | All | ||||||
OS: | Linux | ||||||
Whiteboard: | |||||||
Fixed In Version: | Doc Type: | Bug Fix | |||||
Doc Text: | Story Points: | --- | |||||
Clone Of: | Environment: | ||||||
Last Closed: | 2004-10-30 03:22:39 UTC | Type: | --- | ||||
Regression: | --- | Mount Type: | --- | ||||
Documentation: | --- | CRM: | |||||
Verified Versions: | Category: | --- | |||||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
Cloudforms Team: | --- | Target Upstream Version: | |||||
Embargoed: | |||||||
Attachments: |
|
Description
Michael Tokarev
2000-08-14 17:12:31 UTC
*** Bug 16136 has been marked as a duplicate of this bug. *** Created attachment 4389 [details]
updated sard.patch for 2.2.16-22
I finally changed the patch for 2.2.16-22 kernel. This is original sard.patch applied with backup (-b -z .sard), with 3 EXPORT_SYMBOL added to ll_rw_blk.c, and diffed against *.sard. This also cleans up some line numbers. Is that so difficult to fix the problem? :) This is another small set of changes as alternate to full sard.patch I attached (my patch will not work on 2.2.16-24 due to differences with pcmcia). Add this lines to the original _patch_ file at the end of changes for linux/drivers/block/ll_rw_blk.c. This can be done by hand. --- cut --- @@ -1143,3 +1282,6 @@ EXPORT_SYMBOL(end_that_request_first); EXPORT_SYMBOL(end_that_request_last); EXPORT_SYMBOL(blkelv_ioctl); +EXPORT_SYMBOL(disk_round_stats); +EXPORT_SYMBOL(req_new_io); +EXPORT_SYMBOL(req_finished_io); --- cut --- (the changes will go to the end of ll_rw_blk.c file; the above lines should be placed just before line "--- linux/drivers/block/ps2esdi.c.sard" in 2.2.16-24). I ask again: is this _so_ difficult ?! Problem was reported at 2000-08-14, now it is 2000-10-19, more than two months for trivial problem! :( BTW, as I can guess, this whole thing is for supporting sar, aka system activity reporter (from sysstat package), right? If so, than the patch is not complete. For example, even with this patch, sar won't report activities for softraid and raw partitions/devices (not pretty shure but it seemed to be so, at least for raw). |