From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753524AbbG2LX7 (ORCPT ); Wed, 29 Jul 2015 07:23:59 -0400 Received: from mx2.suse.de ([195.135.220.15]:45140 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751472AbbG2LX6 (ORCPT ); Wed, 29 Jul 2015 07:23:58 -0400 Date: Wed, 29 Jul 2015 13:23:54 +0200 From: Petr Mladek To: Tejun Heo Cc: Andrew Morton , Oleg Nesterov , Ingo Molnar , Peter Zijlstra , Steven Rostedt , "Paul E. McKenney" , Josh Triplett , Thomas Gleixner , Linus Torvalds , Jiri Kosina , Borislav Petkov , Michal Hocko , linux-mm@kvack.org, Vlastimil Babka , live-patching@vger.kernel.org, linux-api@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [RFC PATCH 13/14] kthread_worker: Add set_kthread_worker_user_nice() Message-ID: <20150729112354.GK2673@pathway.suse.cz> References: <1438094371-8326-1-git-send-email-pmladek@suse.com> <1438094371-8326-14-git-send-email-pmladek@suse.com> <20150728174058.GF5322@mtj.duckdns.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150728174058.GF5322@mtj.duckdns.org> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue 2015-07-28 13:40:58, Tejun Heo wrote: > On Tue, Jul 28, 2015 at 04:39:30PM +0200, Petr Mladek wrote: > ... > > +/* > > + * set_kthread_worker_user_nice - set scheduling priority for the kthread worker > > + * @worker: target kthread_worker > > + * @nice: niceness value > > + */ > > +void set_kthread_worker_user_nice(struct kthread_worker *worker, long nice) > > +{ > > + struct task_struct *task = worker->task; > > + > > + WARN_ON(!task); > > + set_user_nice(task, nice); > > +} > > +EXPORT_SYMBOL(set_kthread_worker_user_nice); > > kthread_worker is explcitly associated with a single kthread. Why do > we want to create explicit wrappers for kthread operations? This is > encapsulation for encapsulation's sake. It doesn't buy us anything at > all. Just let the user access the associated kthread and operate on > it. My plan is to make the API cleaner and hide struct kthread_worker definition into kthread.c. It would prevent anyone doing any hacks with it. BTW, we do the same with struct workqueue_struct. Another possibility would be to add helper function to get the associated task struct but this might cause inconsistencies when the worker is restarted. Best Regards, Petr