From: kernel test robot <lkp@intel.com>
To: Byungchul Park <byungchul.park@lge.com>, torvalds@linux-foundation.org
Cc: kbuild-all@lists.01.org, damien.lemoal@opensource.wdc.com,
linux-ide@vger.kernel.org, adilger.kernel@dilger.ca,
linux-ext4@vger.kernel.org, mingo@redhat.com,
linux-kernel@vger.kernel.org, peterz@infradead.org,
will@kernel.org, tglx@linutronix.de, rostedt@goodmis.org,
joel@joelfernandes.org, sashal@kernel.org,
daniel.vetter@ffwll.ch, chris@chris-wilson.co.uk,
duyuyang@gmail.com, johannes.berg@intel.com, tj@kernel.org,
tytso@mit.edu, willy@infradead.org, david@fromorbit.com,
amir73il@gmail.com, bfields@fieldses.org,
gregkh@linuxfoundation.org, kernel-team@lge.com,
linux-mm@kvack.org, akpm@linux-foundation.org, mhocko@kernel.org,
minchan@kernel.org, hannes@cmpxchg.org
Subject: Re: [PATCH v2 08/18] dept: Apply Dept to wait_for_completion()/complete()
Date: Wed, 23 Feb 2022 03:25:44 +0800 [thread overview]
Message-ID: <202202230329.dwOppOXY-lkp@intel.com> (raw)
In-Reply-To: <1645268311-24222-9-git-send-email-byungchul.park@lge.com>
Hi Byungchul,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on tip/sched/core]
[also build test WARNING on linux/master linus/master v5.17-rc5]
[cannot apply to tip/locking/core hnaz-mm/master next-20220217]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Byungchul-Park/DEPT-Dependency-Tracker/20220220-185528
base: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git ed3b362d54f0038cafc985248350d301af7af686
reproduce: make htmldocs
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
>> include/linux/completion.h:121: warning: expecting prototype for init_completion(). Prototype was for __init_completion() instead
vim +121 include/linux/completion.h
8b3db9c542e18b7 Ingo Molnar 2006-07-03 110
65eb3dc609dec17 Kevin Diggs 2008-08-26 111 /**
ee2f154a598e96d Randy Dunlap 2010-10-26 112 * init_completion - Initialize a dynamically allocated completion
c32f74ab2872994 Wolfram Sang 2013-11-14 113 * @x: pointer to completion structure that is to be initialized
65eb3dc609dec17 Kevin Diggs 2008-08-26 114 *
65eb3dc609dec17 Kevin Diggs 2008-08-26 115 * This inline function will initialize a dynamically created completion
65eb3dc609dec17 Kevin Diggs 2008-08-26 116 * structure.
65eb3dc609dec17 Kevin Diggs 2008-08-26 117 */
82b6a46bab5dcb0 Byungchul Park 2022-02-19 118 static inline void __init_completion(struct completion *x,
82b6a46bab5dcb0 Byungchul Park 2022-02-19 119 struct dept_key *dkey,
82b6a46bab5dcb0 Byungchul Park 2022-02-19 120 const char *name)
^1da177e4c3f415 Linus Torvalds 2005-04-16 @121 {
^1da177e4c3f415 Linus Torvalds 2005-04-16 122 x->done = 0;
82b6a46bab5dcb0 Byungchul Park 2022-02-19 123 dept_wfc_init(&x->dmap, dkey, 0, name);
a5c6234e10280b3 Thomas Gleixner 2020-03-21 124 init_swait_queue_head(&x->wait);
^1da177e4c3f415 Linus Torvalds 2005-04-16 125 }
^1da177e4c3f415 Linus Torvalds 2005-04-16 126
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
next prev parent reply other threads:[~2022-02-22 19:26 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-19 10:58 [PATCH v2 00/18] DEPT(Dependency Tracker) Byungchul Park
2022-02-19 10:58 ` [PATCH v2 01/18] llist: Move llist_{head,node} definition to types.h Byungchul Park
2022-02-19 10:58 ` [PATCH v2 02/18] dept: Implement Dept(Dependency Tracker) Byungchul Park
2022-02-19 10:58 ` [PATCH v2 03/18] dept: Embed Dept data in Lockdep Byungchul Park
2022-02-19 10:58 ` [PATCH v2 04/18] dept: Add a API for skipping dependency check temporarily Byungchul Park
2022-02-19 10:58 ` [PATCH v2 05/18] dept: Apply Dept to spinlock Byungchul Park
2022-02-19 10:58 ` [PATCH v2 06/18] dept: Apply Dept to mutex families Byungchul Park
2022-02-19 10:58 ` [PATCH v2 07/18] dept: Apply Dept to rwlock Byungchul Park
2022-02-19 10:58 ` [PATCH v2 08/18] dept: Apply Dept to wait_for_completion()/complete() Byungchul Park
2022-02-22 19:25 ` kernel test robot [this message]
2022-02-19 10:58 ` [PATCH v2 09/18] dept: Apply Dept to seqlock Byungchul Park
2022-02-19 10:58 ` [PATCH v2 10/18] dept: Apply Dept to rwsem Byungchul Park
2022-02-19 10:58 ` [PATCH v2 11/18] dept: Add proc knobs to show stats and dependency graph Byungchul Park
2022-02-19 10:58 ` [PATCH v2 12/18] dept: Introduce split map concept and new APIs for them Byungchul Park
2022-02-19 10:58 ` [PATCH v2 13/18] dept: Apply Dept to wait/event of PG_{locked,writeback} Byungchul Park
2022-02-19 10:58 ` [PATCH v2 14/18] dept: Apply SDT to swait Byungchul Park
2022-02-19 10:58 ` [PATCH v2 15/18] dept: Apply SDT to wait(waitqueue) Byungchul Park
2022-02-19 10:58 ` [PATCH v2 16/18] locking/lockdep, cpu/hotplus: Use a weaker annotation in AP thread Byungchul Park
2022-02-19 10:58 ` [PATCH v2 17/18] dept: Distinguish each syscall context from another Byungchul Park
2022-02-19 10:58 ` [PATCH v2 18/18] dept: Distinguish each work " Byungchul Park
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202202230329.dwOppOXY-lkp@intel.com \
--to=lkp@intel.com \
--cc=adilger.kernel@dilger.ca \
--cc=akpm@linux-foundation.org \
--cc=amir73il@gmail.com \
--cc=bfields@fieldses.org \
--cc=byungchul.park@lge.com \
--cc=chris@chris-wilson.co.uk \
--cc=damien.lemoal@opensource.wdc.com \
--cc=daniel.vetter@ffwll.ch \
--cc=david@fromorbit.com \
--cc=duyuyang@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=hannes@cmpxchg.org \
--cc=joel@joelfernandes.org \
--cc=johannes.berg@intel.com \
--cc=kbuild-all@lists.01.org \
--cc=kernel-team@lge.com \
--cc=linux-ext4@vger.kernel.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@kernel.org \
--cc=minchan@kernel.org \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=sashal@kernel.org \
--cc=tglx@linutronix.de \
--cc=tj@kernel.org \
--cc=torvalds@linux-foundation.org \
--cc=tytso@mit.edu \
--cc=will@kernel.org \
--cc=willy@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox