From: kbuild test robot <lkp@intel.com>
To: Junil Lee <junil0814.lee@lge.com>
Cc: kbuild-all@01.org, labbott@redhat.com, sumit.semwal@linaro.org,
gregkh@linuxfoundation.org, arve@android.com,
riandrews@android.com, devel@driverdev.osuosl.org,
linux-kernel@vger.kernel.org, Junil Lee <junil0814.lee@lge.com>,
Bongkyu Kim <bongkyu.kim@lge.com>
Subject: Re: [PATCH] staging: android: ion: reduce lock contention latency
Date: Fri, 17 Mar 2017 05:22:52 +0800 [thread overview]
Message-ID: <201703170511.65VejFeA%fengguang.wu@intel.com> (raw)
In-Reply-To: <1489477886-2860-1-git-send-email-junil0814.lee@lge.com>
[-- Attachment #1: Type: text/plain, Size: 2140 bytes --]
Hi Junil,
[auto build test WARNING on staging/staging-testing]
[also build test WARNING on v4.11-rc2 next-20170310]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
url: https://github.com/0day-ci/linux/commits/Junil-Lee/staging-android-ion-reduce-lock-contention-latency/20170317-021346
config: i386-randconfig-i0-201711 (attached as .config)
compiler: gcc-4.8 (Debian 4.8.4-1) 4.8.4
reproduce:
# save the attached .config to linux build tree
make ARCH=i386
All warnings (new ones prefixed by >>):
drivers/staging/android/ion/ion_page_pool.c: In function 'ion_page_pool_remove':
>> drivers/staging/android/ion/ion_page_pool.c:68:9: warning: assignment from incompatible pointer type [enabled by default]
node = llist_entry((struct list_head *)node, struct page, lru);
^
drivers/staging/android/ion/ion_page_pool.c:74:9: warning: assignment from incompatible pointer type [enabled by default]
node = llist_entry((struct list_head *)node, struct page, lru);
^
vim +68 drivers/staging/android/ion/ion_page_pool.c
52 llist_add((struct llist_node *)&page->lru, &pool->low_items);
53 atomic_inc(&pool->low_count);
54 }
55
56 return 0;
57 }
58
59 static struct page *ion_page_pool_remove(struct ion_page_pool *pool, bool high)
60 {
61 struct page *page = NULL;
62 struct llist_node *node;
63
64 if (high) {
65 BUG_ON(!atomic_read(&pool->high_count));
66 node = llist_del_first(&pool->high_items);
67 if (node)
> 68 node = llist_entry((struct list_head *)node, struct page, lru);
69 atomic_dec(&pool->high_count);
70 } else {
71 BUG_ON(!atomic_read(&pool->low_count));
72 node = llist_del_first(&pool->low_items);
73 if (node)
74 node = llist_entry((struct list_head *)node, struct page, lru);
75 atomic_dec(&pool->low_count);
76 }
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 31734 bytes --]
prev parent reply other threads:[~2017-03-16 21:27 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-14 7:51 Junil Lee
2017-03-14 17:10 ` Laura Abbott
2017-03-16 18:58 ` kbuild test robot
2017-03-16 21:22 ` kbuild test robot [this message]
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=201703170511.65VejFeA%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=arve@android.com \
--cc=bongkyu.kim@lge.com \
--cc=devel@driverdev.osuosl.org \
--cc=gregkh@linuxfoundation.org \
--cc=junil0814.lee@lge.com \
--cc=kbuild-all@01.org \
--cc=labbott@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=riandrews@android.com \
--cc=sumit.semwal@linaro.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
all inboxes | Powered by JetHome®