lkml.org 
[lkml]   [2005]   [Dec]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [PATCH/RFC] SPI core: turn transfers to be linked list
Date
On Saturday 17 December 2005 1:18 pm, Vitaly Wool wrote:
> Greetings,
>
> the patch attached changes the way transfers are chained in the SPI
> core. Namely, they are turned into linked lists instead of array. The
> reason behind is that we'd like to be able to use lightweight memory
> allocation mechanism to use it in interrupt context.

Hmm, color me confused. Is there something preventing a driver from
having its own freelist (or whatever), in cases where kmalloc doesn't
suffice? If not, why should the core change? And what sort of driver
measurements are you doing, to conclude that kmalloc doesn't suffice?


> An example of such
> kind of mechanism can be found in spi-alloc.c file in our core. The
> lightweightness is achieved by the knowledge that all the blocks to be
> allocated are of the same size.

I'd have said that since this increases the per-transfer costs (to set
up and manage the list memberships) you want to increase the weight of
that part of the API, not decrease it. ;)

Note that your current API maps to mine roughly by equating

allocate your spi_msg
allocate my { spi_message + one spi_transfer }

So if you're doing one allocation anyway, you already have the relevant
linked list (in spi_message) and pre-known size. So this patch wouldn't
improve any direct translation of your driver stack.


> We'd like to use this allocation
> technique for both message structure and transfer structure The problem
> with the current code is that transfers are represnted as an array so it
> can be of any size effectively.

Could you elaborate on this problem you perceive? This isn't the only
driver API in Linux to talk in terms of arrays describing transfers,
even potentially large arrays.

Consider how "struct scatterlist" is used, and how USB manages the
descriptors for isochronous transfers. They don't use linked lists
there, and haven't seemed to suffer from it.

- Dave
-
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-12-18 21:43    [W:0.111 / U:0.160 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site