From: "Chen, Kenneth W" <kenneth.w.chen@intel.com>
To: 'Holger Kiehl' <Holger.Kiehl@dwd.de>, Andrew Morton <akpm@osdl.org>
Cc: linux-kernel <linux-kernel@vger.kernel.org>,
linux-scsi@vger.kernel.org, "Moore, Eric Dean" <emoore@lsil.com>
Subject: RE: Fusion-MPT much faster as module
Date: Tue, 22 Mar 2005 02:29:23 -0800 [thread overview]
Message-ID: <200503221029.j2MATNg12775@unix-os.sc.intel.com> (raw)
In-Reply-To: <Pine.LNX.4.61.0503220813290.17195@diagnostix.dwd.de>
On Mon, 21 Mar 2005, Andrew Morton wrote:
> Holger, this problem remains unresolved, does it not? Have you done any
> more experimentation?
>
> I must say that something funny seems to be happening here. I have two
> MPT-based Dell machines, neither of which is using a modular driver:
>
> akpm:/usr/src/25> 0 hdparm -t /dev/sda
>
> /dev/sda:
> Timing buffered disk reads: 64 MB in 5.00 seconds = 12.80 MB/sec
Holger Kiehl wrote on Tuesday, March 22, 2005 12:31 AM
> Got the same result when compiled in, always between 12 and 13 MB/s. As
> module it is approx. 75 MB/s.
Half guess, half with data to prove: it must be the variable driver_setup
initialization. If compiled as built-in, driver_setup is initialized to
zero for all of its member variables, which isn't the fastest setting. If
compiled as module, it gets first class treatment with shinny performance
setting. Goofing around, this patch appears to be giving higher throughput.
Before:
/dev/sdc:
Timing buffered disk reads: 92 MB in 3.03 seconds = 30.32 MB/sec
After:
/dev/sdc:
Timing buffered disk reads: 174 MB in 3.02 seconds = 57.61 MB/sec
diff -Nurp linux-2.6.11/drivers/message/fusion/mptscsih.c linux-2.6.11.ken/drivers/message/fusion/mptscsih.c
--- linux-2.6.11/drivers/message/fusion/mptscsih.c 2005-03-01 23:38:37.000000000 -0800
+++ linux-2.6.11.ken/drivers/message/fusion/mptscsih.c 2005-03-22 02:18:21.000000000 -0800
@@ -96,7 +96,6 @@ MODULE_AUTHOR(MODULEAUTHOR);
MODULE_DESCRIPTION(my_NAME);
MODULE_LICENSE("GPL");
-#ifdef MODULE
static int dv = MPTSCSIH_DOMAIN_VALIDATION;
module_param(dv, int, 0);
MODULE_PARM_DESC(dv, "DV Algorithm: enhanced = 1, basic = 0 (default=MPTSCSIH_DOMAIN_VALIDATION=1)");
@@ -112,7 +111,6 @@ MODULE_PARM_DESC(factor, "Min Sync Facto
static int saf_te = MPTSCSIH_SAF_TE;
module_param(saf_te, int, 0);
MODULE_PARM_DESC(saf_te, "Force enabling SEP Processor: (default=MPTSCSIH_SAF_TE=0)");
-#endif
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
@@ -1489,7 +1487,6 @@ mptscsih_init(void)
": Registered for IOC reset notifications\n"));
}
-#ifdef MODULE
dinitprintk((KERN_INFO MYNAM
": Command Line Args: dv=%d max_width=%d "
"factor=0x%x saf_te=%d\n",
@@ -1499,7 +1496,6 @@ mptscsih_init(void)
driver_setup.max_width = (width) ? 1 : 0;
driver_setup.min_sync_factor = factor;
driver_setup.saf_te = (saf_te) ? 1 : 0;;
-#endif
if(mpt_device_driver_register(&mptscsih_driver,
MPTSCSIH_DRIVER) != 0 ) {
next prev parent reply other threads:[~2005-03-22 10:29 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <Pine.LNX.4.61.0503081327560.28812@praktifix.dwd.de>
2005-03-21 23:27 ` Fusion-MPT much faster as module Andrew Morton
2005-03-22 7:32 ` Janne Pikkarainen
2005-03-22 8:31 ` Holger Kiehl
2005-03-22 10:29 ` Chen, Kenneth W [this message]
2005-03-22 10:42 ` Andrew Morton
2005-03-22 10:52 ` Arjan van de Ven
2005-03-22 12:28 ` Adrian Bunk
2005-03-22 12:37 ` Arjan van de Ven
2005-03-22 19:36 ` Fusion-MPT much faster as module - ifdef MODULE considered harmful Bryan Henderson
2005-03-22 13:46 ` Fusion-MPT much faster as module Holger Kiehl
2005-03-21 23:46 Moore, Eric Dean
2005-03-31 18:59 ` augustus
2005-03-31 20:22 ` Andrew Morton
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200503221029.j2MATNg12775@unix-os.sc.intel.com \
--to=kenneth.w.chen@intel.com \
--cc=Holger.Kiehl@dwd.de \
--cc=akpm@osdl.org \
--cc=emoore@lsil.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox