Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965083AbWBGUfv (ORCPT ); Tue, 7 Feb 2006 15:35:51 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S965111AbWBGUfv (ORCPT ); Tue, 7 Feb 2006 15:35:51 -0500 Received: from smtp.osdl.org ([65.172.181.4]:2527 "EHLO smtp.osdl.org") by vger.kernel.org with ESMTP id S965083AbWBGUfu (ORCPT ); Tue, 7 Feb 2006 15:35:50 -0500 Date: Tue, 7 Feb 2006 12:34:55 -0800 From: Andrew Morton To: Dave Jones Cc: James.Bottomley@SteelEye.com, linux-kernel@vger.kernel.org, linux-scsi@vger.kernel.org Subject: Re: [PATCH] add execute_in_process_context() API Message-Id: <20060207123455.7e19a2bf.akpm@osdl.org> In-Reply-To: <20060207202655.GD24775@redhat.com> References: <1139342419.6065.8.camel@mulgrave.il.steeleye.com> <20060207202655.GD24775@redhat.com> X-Mailer: Sylpheed version 1.0.4 (GTK+ 1.2.10; i386-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1214 Lines: 42 Dave Jones wrote: > > On Tue, Feb 07, 2006 at 02:00:19PM -0600, James Bottomley wrote: > > +int execute_in_process_context(void (*fn)(void *data), void *data) > > +{ > > + struct work_queue_work *wqw; > > + > > + if (!in_interrupt()) { > > + fn(data); > > + return 0; > > + } > > + > > + wqw = kmalloc(sizeof(struct work_queue_work), GFP_ATOMIC); > > + > > + if (unlikely(!wqw)) { > > + printk(KERN_ERR "Failed to allocate memory\n"); > > + WARN_ON(1); > > + return -ENOMEM; > > + } > > + > > + INIT_WORK(&wqw->work, execute_in_process_context_work, wqw); > > + wqw->fn = fn; > > + wqw->data = data; > > + schedule_work(&wqw->work); > > + > > + return 1; > > +} > > After the workqueue has run, what free's wqw ? > The callback (execute_in_process_context_work()) The trap with this patch is that the caller has to run flush_scheduled_work() at the right time. But hopefully anyone who's using it knows that by now. - 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/