Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757102Ab0LIVMT (ORCPT ); Thu, 9 Dec 2010 16:12:19 -0500 Received: from smtp1.linux-foundation.org ([140.211.169.13]:54307 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754786Ab0LIVMM (ORCPT ); Thu, 9 Dec 2010 16:12:12 -0500 Date: Thu, 9 Dec 2010 13:09:36 -0800 From: Andrew Morton To: Maxim Levitsky Cc: linux-kernel , Alex Dubov , Takashi Iwai Subject: Re: [PATCH 1/2] memstick: add support for legacy memorysticks Message-Id: <20101209130936.5c62ac10.akpm@linux-foundation.org> In-Reply-To: <1291862546-10064-1-git-send-email-maximlevitsky@gmail.com> References: <1291862363.7792.28.camel@maxim-laptop> <1291862546-10064-1-git-send-email-maximlevitsky@gmail.com> X-Mailer: Sylpheed 3.0.2 (GTK+ 2.20.1; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2590 Lines: 105 On Thu, 9 Dec 2010 04:42:25 +0200 Maxim Levitsky wrote: > +/* > + * Advance scatterlist by 'consumed' bytes > + * Returns new scatterlist, or NULL if can't advance that much > + */ > +static struct scatterlist *sg_advance(struct scatterlist *sg, int consumed) > +{ > + while (consumed >= sg->length) { > + consumed -= sg->length; > + > + sg = sg_next(sg); > + if (!sg) > + break; > + } > + > + WARN_ON(!sg && consumed); > + > + if (!sg) > + return NULL; > + > + sg->offset += consumed; > + sg->length -= consumed; > + > + if (sg->offset >= PAGE_SIZE) { > + struct page *page = > + nth_page(sg_page(sg), sg->offset / PAGE_SIZE); > + sg_set_page(sg, page, sg->length, sg->offset % PAGE_SIZE); > + } > + > + return sg; > +} > + > +/* Calculate number of sg entries in sg list */ > +static int sg_nents(struct scatterlist *sg) > +{ > + int nents = 0; > + while (sg) { > + nents++; > + sg = sg_next(sg); > + } > + > + return nents; > +} > + > +/* Calculate total lenght of scatterlist */ (typo) > +static int sg_total_len(struct scatterlist *sg) > +{ > + int len = 0; > + while (sg) { > + len += sg->length; > + sg = sg_next(sg); > + } > + return len; > +} > + > +/* Compare contents of an sg to a buffer */ > +static bool sg_compare_to_buffer(struct scatterlist *sg, u8 *buffer, size_t len) > +{ > + unsigned long flags; > + int retval = 0; > + struct sg_mapping_iter miter; > + > + if (sg_total_len(sg) < len) > + return 1; > + > + local_irq_save(flags); > + sg_miter_start(&miter, sg, sg_nents(sg), > + SG_MITER_ATOMIC | SG_MITER_FROM_SG); > + > + while (sg_miter_next(&miter) && len > 0) { > + > + int cmplen = min(miter.length, len); > + if (memcmp(miter.addr, buffer, cmplen)) { > + retval = 1; > + break; > + } > + > + buffer += cmplen; > + len -= cmplen; > + } > + > + sg_miter_stop(&miter); > + local_irq_restore(flags); > + return retval; > +} I think I mentioned this before, but ... it's really bad that the above functions appear in a particular device driver. They are, to varying degrees, independent of that driver and should be provided by the sglist core code. Also, the local_irq_save/restore in sg_compare_to_buffer() is quite mysterious and should have a comment explaining why it is there. Once that's done, I might understand why it isn't a bug on SMP machines ;) -- 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/