Received: by 10.223.185.116 with SMTP id b49csp2182076wrg; Thu, 15 Feb 2018 07:44:57 -0800 (PST) X-Google-Smtp-Source: AH8x224TUH34qylxu1p0xa2kmkPcw1NRvlLDeF9mSHZDznQlg7eac0V1r6yvpx8LC8WQ3zwWvbLH X-Received: by 2002:a17:902:8349:: with SMTP id z9-v6mr2994026pln.164.1518709497101; Thu, 15 Feb 2018 07:44:57 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1518709497; cv=none; d=google.com; s=arc-20160816; b=pk526Z95GftkJsWC4DOUD7aFemofkHmUlnCZnne88ouewrlTk/ZAP4+v6cKtdMOKa5 kJ8HcZ/Z4i2ODwRaoW0fpvFk7P7DRDqycXWlYzjEfWHysJ9hkFJ7YeuF0NQYqaYhS6Db WymFDmKy0EdpFB8/LikhMrZ6lyfXex+6hpHI6DTBCKoNrCmEH/ZwFIDWAGMHJfI2gNiW Qjur1mCnyZtJVV7s4uqbgUzZm00YCzIDLxUl8UG3XqvAmgJ8QZsORmCom9d+zrubJlAg Q3HVDQl9ZBPSRPmWc4jojha1UMTbVJeDLx7HxHtGz1RpH+cMA9lp1QkqZEwg5hZFJvvZ zFMw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from :arc-authentication-results; bh=vbABHGyyWEPFTEi9sFxoVuXMvvK95aZjAjIVkjooddM=; b=Hs1Bq9GUB5Y/0Oy0glKFjxKcOZYMHsDZS5I8z4PjmZa36l+N0LcEgA2DhUJuTDdgTg bkkU3xO8U3kve8J8COby13bgU5cV/IyJ5jYa+iISWbmOuBuQEjmnFFaFQTvNiqacMk1A e4gqrusMUsXICzTjEFcyVQnef15PiaDNgyFZTUW+1caY/g2UHpWJDBzTJwbN2duedd4I v273PdI4677VYq7eyNEp/4c4aS48pNkW6Btw50HGXiBb+6ZeCV0ZZX2zYnWskLj6GR05 MwZ9Sl5FKttm+JRpStgnE4jHEMY3akYU8bV/wq8XrbSRJg8V7Y+rwGjWVz9hQf+m7lJU Xa5g== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=gentoo.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id y26si1626879pfe.232.2018.02.15.07.44.41; Thu, 15 Feb 2018 07:44:57 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=gentoo.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1165287AbeBOPnd (ORCPT + 99 others); Thu, 15 Feb 2018 10:43:33 -0500 Received: from smtp.gentoo.org ([140.211.166.183]:49328 "EHLO smtp.gentoo.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1165086AbeBOPn2 (ORCPT ); Thu, 15 Feb 2018 10:43:28 -0500 Received: from gentoo.red.cuarto (unknown [181.67.35.22]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: chrisadr) by smtp.gentoo.org (Postfix) with ESMTPSA id 1D45C335C2E; Thu, 15 Feb 2018 15:43:26 +0000 (UTC) From: Christopher Diaz Riveros To: mingo@redhat.com, peterz@infradead.org Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org Subject: [PATCH-next] sched/headers: Clean up Date: Thu, 15 Feb 2018 10:43:18 -0500 Message-Id: <20180215154318.15894-1-chrisadr@gentoo.org> X-Mailer: git-send-email 2.16.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Trivial clean up making comments fit in 80 columns and keeping the same comment style. Signed-off-by: Christopher Diaz Riveros --- include/linux/sched.h | 54 +++++++++++++++++++++++++++++++++------------------ 1 file changed, 35 insertions(+), 19 deletions(-) diff --git a/include/linux/sched.h b/include/linux/sched.h index b161ef8a902e..c752a0d48944 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -183,7 +183,7 @@ extern void io_schedule_finish(int token); extern long io_schedule_timeout(long timeout); extern void io_schedule(void); -/** +/* * struct prev_cputime - snapshot of system and user cputime * @utime: time spent in user mode * @stime: time spent in system mode @@ -200,7 +200,7 @@ struct prev_cputime { #endif }; -/** +/* * struct task_cputime - collected CPU time counts * @utime: time spent in user mode, in nanoseconds * @stime: time spent in kernel mode, in nanoseconds @@ -437,20 +437,28 @@ struct sched_dl_entity { * during sched_setattr(), they will remain the same until * the next sched_setattr(). */ - u64 dl_runtime; /* Maximum runtime for each instance */ - u64 dl_deadline; /* Relative deadline of each instance */ - u64 dl_period; /* Separation of two instances (period) */ - u64 dl_bw; /* dl_runtime / dl_period */ - u64 dl_density; /* dl_runtime / dl_deadline */ + /* Maximum runtime for each instance */ + u64 dl_runtime; + /* Relative deadline of each instance */ + u64 dl_deadline; + /* Separation of two instances (period) */ + u64 dl_period; + /* dl_runtime / dl_period */ + u64 dl_bw; + /* dl_runtime / dl_deadline */ + u64 dl_density; /* * Actual scheduling parameters. Initialized with the values above, * they are continously updated during task execution. Note that * the remaining runtime could be < 0 in case we are in overrun. */ - s64 runtime; /* Remaining runtime for this instance */ - u64 deadline; /* Absolute deadline for this instance */ - unsigned int flags; /* Specifying the scheduler behaviour */ + /* Remaining runtime for this instance */ + s64 runtime; + /* Absolute deadline for this instance */ + u64 deadline; + /* Specifying the scheduler behaviour */ + unsigned int flags; /* * Some bool flags: @@ -666,7 +674,8 @@ struct task_struct { unsigned no_cgroup_migration:1; #endif - unsigned long atomic_flags; /* Flags requiring atomic access. */ + /* Flags requiring atomic access. */ + unsigned long atomic_flags; struct restart_block restart_block; @@ -678,8 +687,9 @@ struct task_struct { unsigned long stack_canary; #endif /* - * Pointers to the (original) parent process, youngest child, younger sibling, - * older sibling, respectively. (p->father can be replaced with + * Pointers to the (original) parent process, youngest child, + * younger sibling, older sibling, respectively. + * (p->father can be replaced with * p->real_parent->pid) */ @@ -743,7 +753,10 @@ struct task_struct { /* Boot based time in nsecs: */ u64 real_start_time; - /* MM fault and swap info: this can arguably be seen as either mm-specific or thread-specific: */ + /* + * MM fault and swap info: this can arguably be seen as either + * mm-specific or thread-specific: + */ unsigned long min_flt; unsigned long maj_flt; @@ -815,7 +828,10 @@ struct task_struct { u32 parent_exec_id; u32 self_exec_id; - /* Protection against (de-)allocation: mm, files, fs, tty, keyrings, mems_allowed, mempolicy: */ + /* + * Protection against (de-)allocation: mm, files, fs, tty, + * keyrings, mems_allowed, mempolicy: + */ spinlock_t alloc_lock; /* Protection of the PI data structures: */ @@ -1176,7 +1192,7 @@ static inline pid_t task_tgid_nr(struct task_struct *tsk) return tsk->tgid; } -/** +/* * pid_alive - check that a task structure is not stale * @p: Task structure to be checked. * @@ -1275,7 +1291,7 @@ static inline char task_state_to_char(struct task_struct *tsk) return task_index_to_char(task_state_index(tsk)); } -/** +/* * is_global_init - check if a task structure is init. Since init * is free to have sub-threads we need to check tgid. * @tsk: Task structure to be checked. @@ -1422,7 +1438,7 @@ extern int yield_to(struct task_struct *p, bool preempt); extern void set_user_nice(struct task_struct *p, long nice); extern int task_prio(const struct task_struct *p); -/** +/* * task_nice - return the nice value of a given task. * @p: the task in question. * @@ -1442,7 +1458,7 @@ extern int sched_setattr(struct task_struct *, const struct sched_attr *); extern int sched_setattr_nocheck(struct task_struct *, const struct sched_attr *); extern struct task_struct *idle_task(int cpu); -/** +/* * is_idle_task - is the specified task an idle task? * @p: the task in question. * -- 2.16.1