Re: [Announce] Emulex LightPulse Device Driver

From: Pete Zaitcev
Date: Wed Mar 10 2004 - 13:03:28 EST


On Wed, 10 Mar 2004 03:35:09 -0500
Jeff Garzik <jgarzik@xxxxxxxxx> wrote:

> I'm only part way through a review of the driver, but I felt there is a
> rather large and important issue that needs addressing... "wrappers."

Jeff, I agree completely that Emulex code is infested with wrappers
so much that it's harmful. However, the particular example you selected
you interpret wrong.

> void
> elx_sli_lock(elxHBA_t * phba, unsigned long *iflag)

Flag problem on sparc is fixed by Keith Wesolowsky for 2.6.3-rcX,
and it never existed on sparc64, which keeps CWP in a separate register.

Why it took years to resolve is that the expirience showed that
there is no legitimate reason to pass flags as arguments. Every damn
time it was done, the author was being stupid. Keith resolved it
primarily because it was an unorthogonality in sparc implementation.

> But this bug is only an example that serves to highlight the importance
> of directly using Linux API functions throughout your code. It may
> sound redundant, but "Linux code should look like Linux code." This
> emphasis on style may sound trivial, but it's important for
> review-ability, long term maintenance, and as we see here, bug prevention.

Yes yes yes. This is the way elx_sli_lock is harmful, not because
of its passing flags.

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