lkml.org 
[lkml]   [2004]   [Apr]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRe: [PATCH][RELEASE]: megaraid unified driver version 2.20.0.B1
Mukker, Atul wrote:
>>0) Am I to judge from megaraid_mbox_build_cmd that megaraid does not
>>really support SCSI, but it translates instead? This may imply that
>>implementation as a SCSI driver is inappropriate.
>
>
> MegaRAID is a very SCSI stack :-)

Well, the stack is irrelevant -- if you are not pushing real SCSI CDBs
to the RAID arrays, then it is not terribly appropriate as a SCSI driver.

We must distinguish use of Linux SCSI for driver API, from use of Linux
SCSI for communicating with SCSI devices.

This is more of a Linux 2.7.x issue, since I don't expect LSI to rewrite
the driver again as a block driver, at the moment :)


>>1) Remove back-compat code from kdep.h. It's OK for devel and for
>>vendor-specific branch, but we wouldn't want this in 2.6.x mainline.
>
>
> The 2.4 portion of the code has a very small footprint in the driver. Thanks
> to earlier inputs from Christoph Hellwig, it will be even smaller.
> Maintaining single code for lk 2.4 and 2.6 makes very sense from logistics
> and maintenance point of view. lk 2.4 is still very popular :-) and we would
> like to provide support for the same with the latest drivers as well.

I certainly agree that 2.4 maintenance will be required for quite some
time. My employer (Red Hat) has a maintenance lifetime of ~5 years or
more for its 2.4.x-based products.

The suggested direction, however is not to include back-compat in the
upstream kernel tree. This leads to unnecessary levels of indirection
in the upstream tree, which makes it more difficult for reviewers to
understand.

You _have_ done a good job of minimizing the 2.4/2.6 differences, but I
still feel it is preferable to leave these out of the 2.6 tree. I have
done the same thing with my SATA driver (libata), which has several
differences

In particular, I feel that attempting to make the differences between
2.4 and 2.6 SCSI layer probing is a big mistake. 2.6 SCSI layer is far
more hotplug-friendly than 2.4, and supporting both in the same source
base puts unreasonable constraints on the code over time, IMO.


>>6) Kill uses of "volatile". _Most_ of the time, this indicates buggy
>>code. You should have the proper barriers in place: mb(), wmb(),
>>rmb(), barrier(), and cpu_relax(). This has been mentioned before :)
>
> We have carefully used "volatile" only on the fields, which are touch by the
> hardware and/or firmware. The proper barriers are used when we want to make
> sure access is properly sequenced.

The vast majority of Linux drivers are volatile-free, for several reasons:
1) it hurts performance (inhibits valid compiler optimizations)
2) it hides bugs
3) it is not necessary for proper operation of hardware

I request that megaraid follow the example of the "vast majority".


>>11) Why is PAGE_SIZE chosen here?
>>
>>+ /*
>>+ * Allocate all pages in a loop
>>+ */
>>+ for (i = 0; i < num_pages; i++) {
>>+
>>+ pool->page_arr[i] = pci_alloc_consistent(
>>dev, PAGE_SIZE-1,
>>+
>>&pool->dmah_arr[i] );
>>+ if (pool->page_arr[i] == NULL) {
>>+ con_log(CL_ANN, (KERN_WARNING
>>+ "megaraid: Failed to alloc
>>page # %d\n",
>>i ));
>>+ goto memlib_fail_alloc;
>>+ }
>>+ }
>>
>
> This API will only be used by low level drivers which require multiple small
> chunks of DMAable memory. This chunk are assumed to be much smaller than a
> PAGE therefore many can fit in a single PAGE. Driver portions requiring
> bigger buffers (>4KB) use pci_alloc_consistent directly.

Now that I understand the purpose, the preference is the same as in my
other reply -- let's fix the problems with pci_pool_xxx API.

We have a kernel API precisely for this purpose; it should be used.

pci_pool is also present in 2.4.x...


>>12) Don't invent your own printk() wrappers. I don't see the
>>need for
>>con_log()
>
> Actually we do, since the debug level can be changed on the fly using ioctl
> and sysfs

Fair enough. We do something similar in net drivers.


>>13) try_assertion{}, catch_assertion{}, and end_assertion attempt to
>>turn C code into C++ code. This will inevitably fail :)
>
> We see it as better error handling. It would be very useful specially when
> we move to more fine-grained locks in the drivers.

It's a very fragile scheme, unfamiliar to non-LSI engineers, and thus
more likely to have problems in the long term. It's just syntactic
sugar, really.


>>14) the following check doesn't scale, please remove:
>>
>>+ if (subsysvid && (subsysvid != PCI_VENDOR_ID_AMI) &&
>>+ (subsysvid != PCI_VENDOR_ID_DELL) &&
>>+ (subsysvid != PCI_VENDOR_ID_HP) &&
>>+ (subsysvid != PCI_VENDOR_ID_INTEL) &&
>>+ (subsysvid != PCI_SUBSYS_ID_FSC) &&
>>+ (subsysvid != PCI_VENDOR_ID_LSI_LOGIC)) {
>>+
>>+ con_log(CL_ANN, (KERN_WARNING
>>+ "megaraid: not loading for
>>subsysvid:%#4.04x\n",
>>+ subsysvid));
>>+
>>+ return -ENODEV;
>>+ }
>>
>
> Please elaborate. We simply want to make sure the pci vendor, device and
> subsystem ID are appropriate before loading the driver.

Two points:

a) Such limitations should be in the pci_device_table, not the code itself

b) It is considered "unfriendly" and maintenance-intensive to add such
checks. If a hardware vendor (let's pick FSC as example) comes out with
new megaraid hardware, you should make every effort to ensure that the
driver _already works_ for that hardware.

We see from the megaraid 2.10.3 driver this patch:

@@ -311,6 +327,7 @@
(subsysvid != DELL_SUBSYS_VID) &&
(subsysvid != HP_SUBSYS_VID) &&
(subsysvid != INTEL_SUBSYS_VID) &&
+ (subsysvid != FSC_SUBSYS_VID) &&
(subsysvid != LSI_SUBSYS_VID) )

The hardware CLEARLY did not need FSC-specific modifications. However,
the FSC hardware would not work without this simple patch.

It is better to eliminate the need for such patches. If the driver and
hardware both comply to the specification, it should Just Work(tm). We
call this "future-proofing" the driver.
You provide better value to your customers by future-proofing your drivers.


>>17) Eliminate MAX_CONTROLLERS. There is no reason for this limit.
>>Global structures such as mraid_driver_g are generally not needed.
>
> We need it, since management module and applications need to see a global
> picture of all adapters in the system

I agree -- but I think you misunderstand.

It is possible to give mm and apps global picture of all adapters,
without introducing an arbitrary hardcoded limit. megaraid already has
a global list of adapters, that should be sufficient.

Dynamic allocation of each adapter, plus a global list, provides all
that megaraid needs, without any hardcoded MAX_CONTROLLERS limit.

When coding, imagine a completely crazy scenario -- such as 1,000
megaraid controllers in a system -- and contemplate all the limits that
will violate in the driver. A simple dynamic allocation scheme would
have no such limits.


>>19) When hardware is malfunctioning or removed, the following
>>code turns
>>into an infinite loop:
>>
>>+ // FIXME: this may not be required
>>+ while (RDINDOOR(raid_dev) & 0x02) cpu_relax();
>
> Is there is bette way to do it. If there is, please suggest - we will
> definitely us it. In fact, this is not the only such loop in the ISR - there
> are two more.

Typically, one includes a simple counter to ensure the loop is not
infinite...

while (condition && (counter-- > 0))
cpu_relax()

>>21) VERY unfriendly to shared interrupts.
>>megaraid_iombox_ack_sequence
>>MUST check immediately for
>> (a) no irq at all (shared interrupt)
>> (b) status return of 0xffffffff (hardware is
>>malfunctioning/unplugged)
>
> This is for EOL controllers. We are planning to phase out this portion.

The (a) and (b) checks I describe are -required- for all controllers,
EOL or not...


>>25) sleep_on_timeout() is deprecated and should not be used:
>>
>>+ while (adp->outstanding_cmds > 0)
>>+ sleep_on_timeout( &wq, 1*HZ );
>>
>
> What is the recommended way to do it?

There are a couple ways... the easiest is to use a semaphone/timer.


>>26) General question: do you ever call down() inside a
>>spinlock? I did
>>not look closely, but I think you do. That would be wrong, as down()
>>can sleep.
>
> That should not happen since down() is only done in ioctl() through
> management module. Will double check though.

Thanks,

Jeff



-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 14:02    [W:0.118 / U:0.908 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site