On Mon, Jul 10 2017, Ming Lei wrote: > On Mon, Jul 10, 2017 at 11:35:12AM +0800, Ming Lei wrote: >> On Mon, Jul 10, 2017 at 7:09 AM, NeilBrown wrote: ... >> >> + >> >> + rp->idx = 0; >> > >> > This is the only place the ->idx is initialized, in r1buf_pool_alloc(). >> > The mempool alloc function is suppose to allocate memory, not initialize >> > it. >> > >> > If the mempool_alloc() call cannot allocate memory it will use memory >> > from the pool. If this memory has already been used, then it will no >> > longer have the initialized value. >> > >> > In short: you need to initialise memory *after* calling >> > mempool_alloc(), unless you ensure it is reset to the init values before >> > calling mempool_free(). >> > >> > https://bugzilla.kernel.org/show_bug.cgi?id=196307 >> >> OK, thanks for posting it out. >> >> Another fix might be to reinitialize the variable(rp->idx = 0) in >> r1buf_pool_free(). >> Or just set it as zero every time when it is used. >> >> But I don't understand why mempool_free() calls pool->free() at the end of >> this function, which may cause to run pool->free() on a new allocated buf, >> seems a bug in mempool? > > Looks I missed the 'return' in mempool_free(), so it is fine. > > How about the following fix? It looks like it would probably work, but it is rather unusual to initialise something just before freeing it. Couldn't you just move the initialization to shortly after the mempool_alloc() call. There looks like a good place that already loops over all the bios.... Thanks, NeilBrown