Re: More on bigger kdev_t

Guest section DW (dwguest@win.tue.nl)
Sun, 10 Oct 1999 22:41:20 +0200 (MET DST)


From: Alan Cox <alan@lxorguk.ukuu.org.uk>

> > The kernel makes quite heavy use of kdev_t. That means carrying around
> > expensive to handle multi-register objects is right out
>
> ... so that would mean we should use a pointer to the structure
> instead of directly passing the structure.

That means a pointer dereference and a potential cache miss every time.

I think you'll find that the pointer code is faster than the current code.
Each time the pointer is dereferenced is to get something we want.

For example, where the code today has
blksize_size[MAJOR(dev)][MINOR(dev)]
the new code has
dev->blksize

Much faster, much more elegant.

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