Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1728981

Re: [PATCH 1/3] kthread: add a mechanism to store cgroup info

From Tejun Heo <tj@kernel.org>
Newsgroups linux.kernel
Subject Re: [PATCH 1/3] kthread: add a mechanism to store cgroup info
Date 2017-09-08 16:40 +0200
Message-ID <unsBP-8jV-5@gated-at.bofh.it> (permalink)
References <umUqt-1Kg-3@gated-at.bofh.it> <umUqt-1Kg-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Hello,

On Wed, Sep 06, 2017 at 07:00:51PM -0700, Shaohua Li wrote:
> +#ifdef CONFIG_CGROUPS
> +void kthread_set_orig_css(struct cgroup_subsys_state *css);
> +struct cgroup_subsys_state *kthread_get_orig_css(void);
> +void kthread_reset_orig_css(void);

* It's a bit weird to associate a kthread with a css without being
  specific.  If what's needed is a generic association (this kthread
  is temporarily servicing this cgroup), it should be associated with
  the cgroup.  But, I think it'd be better to make it specific instead
  - ie. kthread_set_io_css().

* Do we need the reset function to be separate?  Can't we just clear
  it when the set function is called with NULL css?

* For the accessor, can we do sth like kthread_orig_css() (or
  kthread_io_css())?  "get" is overloaded between set/get and get/put,
  so it can get confusing.

> diff --git a/include/linux/sched.h b/include/linux/sched.h
> index c05ac5f..ab2295d 100644
> --- a/include/linux/sched.h
> +++ b/include/linux/sched.h
> @@ -1276,6 +1276,7 @@ extern struct pid *cad_pid;
>  #define PF_SWAPWRITE		0x00800000	/* Allowed to write to swap */
>  #define PF_NO_SETAFFINITY	0x04000000	/* Userland is not allowed to meddle with cpus_allowed */
>  #define PF_MCE_EARLY		0x08000000      /* Early kill for mce process policy */
> +#define PF_KTHREAD_HAS_CSS	0x10000000	/* kthread has css info attached */

Do we need a separate flag for this?  kthreads already have PF_KTHREAD
set.  I'm not sure why we'd need another flag.  Once we know it's a
kthread, we can just access its css pointer field, right?

Thanks.

-- 
tejun

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 1/3] kthread: add a mechanism to store cgroup info Shaohua Li <shli@kernel.org> - 2017-09-07 04:10 +0200
  Re: [PATCH 1/3] kthread: add a mechanism to store cgroup info Tejun Heo <tj@kernel.org> - 2017-09-08 16:40 +0200
    Re: [PATCH 1/3] kthread: add a mechanism to store cgroup info Tejun Heo <tj@kernel.org> - 2017-09-08 16:40 +0200
      Re: [PATCH 1/3] kthread: add a mechanism to store cgroup info Tejun Heo <tj@kernel.org> - 2017-09-08 16:50 +0200
    Re: [PATCH 1/3] kthread: add a mechanism to store cgroup info Shaohua Li <shli@kernel.org> - 2017-09-08 19:00 +0200

csiph-web