Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753443AbbFIGYM (ORCPT ); Tue, 9 Jun 2015 02:24:12 -0400 Received: from mail-pa0-f50.google.com ([209.85.220.50]:35286 "EHLO mail-pa0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751228AbbFIGYD (ORCPT ); Tue, 9 Jun 2015 02:24:03 -0400 Date: Tue, 9 Jun 2015 15:23:49 +0900 From: Tejun Heo To: Petr Mladek Cc: Andrew Morton , Oleg Nesterov , Ingo Molnar , Peter Zijlstra , Richard Weinberger , Steven Rostedt , David Woodhouse , linux-mtd@lists.infradead.org, Trond Myklebust , Anna Schumaker , linux-nfs@vger.kernel.org, Chris Mason , "Paul E. McKenney" , Thomas Gleixner , Linus Torvalds , Jiri Kosina , Borislav Petkov , Michal Hocko , live-patching@vger.kernel.org, linux-api@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [RFC PATCH 02/18] kthread: Add API for iterant kthreads Message-ID: <20150609062349.GW21465@mtj.duckdns.org> References: <1433516477-5153-1-git-send-email-pmladek@suse.cz> <1433516477-5153-3-git-send-email-pmladek@suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1433516477-5153-3-git-send-email-pmladek@suse.cz> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 759 Lines: 28 Hello, Petr. On Fri, Jun 05, 2015 at 05:01:01PM +0200, Petr Mladek wrote: > +static int kthread_iterant_fn(void *kti_ptr) > +{ > + struct kthread_iterant *kti = kti_ptr; > + void *data = kti->data; > + > + if (kti->init) > + kti->init(data); > + > + do { > + if (kti->func) > + kti->func(data); Is supporting kthread_iterant w/o the body function intentional? If so, did you have anything specific on mind for it? I don't think it matters either way. Just curious how this came to be. Thanks. -- tejun -- 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/