Re: [Intel-gfx] [PATCH] drm/i915: Use might_alloc()

2021-05-07 Thread Bernard


From: Daniel Vetter 
Date: 2021-05-01 01:42:20
To:  kernel test robot 
Cc:  Bernard Zhao ,Jani Nikula 
,Joonas Lahtinen 
,Rodrigo Vivi ,David 
Airlie ,Daniel Vetter 
,intel-gfx@lists.freedesktop.org,dri-de...@lists.freedesktop.org,linux-ker...@vger.kernel.org,kbuild-...@lists.01.org
Subject: Re: [PATCH] drm/i915: Use might_alloc()>On Fri, Apr 30, 2021 at 
12:31:27AM +0800, kernel test robot wrote:
>> Hi Bernard,
>> 
>> Thank you for the patch! Yet something to improve:
>> 
>> [auto build test ERROR on drm-intel/for-linux-next]
>> [also build test ERROR on v5.12 next-20210429]
>> [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/Bernard-Zhao/drm-i915-Use-might_alloc/20210429-104516
>> base:   git://anongit.freedesktop.org/drm-intel for-linux-next
>> config: x86_64-rhel-8.3-kselftests (attached as .config)
>> compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
>> reproduce (this is a W=1 build):
>> # 
>> https://github.com/0day-ci/linux/commit/9fbd0c1741ce06241105d753ff3432ab55f3e94a
>> git remote add linux-review https://github.com/0day-ci/linux
>> git fetch --no-tags linux-review 
>> Bernard-Zhao/drm-i915-Use-might_alloc/20210429-104516
>> git checkout 9fbd0c1741ce06241105d753ff3432ab55f3e94a
>> # save the attached .config to linux build tree
>> make W=1 W=1 ARCH=x86_64 
>> 
>> If you fix the issue, kindly add following tag as appropriate
>> Reported-by: kernel test robot 
>> 
>> All errors (new ones prefixed by >>):
>> 
>>drivers/gpu/drm/i915/i915_sw_fence.c: In function 
>> '__i915_sw_fence_await_sw_fence':
>> >> drivers/gpu/drm/i915/i915_sw_fence.c:344:2: error: implicit declaration 
>> >> of function 'might_alloc'; did you mean 'might_lock'? 
>> >> [-Werror=implicit-function-declaration]
>>  344 |  might_alloc(gfp);
>>  |  ^~~
>>  |  might_lock
>>cc1: some warnings being treated as errors
>
>I think you're missing an include or something. The other patch you've
>done seems good, I queued that up in drm-intel-gt-next for 5.14.
>
>Thanks, Daniel

Hi
It looks like I did not include the header file 
I will resubmit one patch, thanks!
BR//Bernard

>> 
>> 
>> vim +344 drivers/gpu/drm/i915/i915_sw_fence.c
>> 
>>335   
>>336   static int __i915_sw_fence_await_sw_fence(struct i915_sw_fence 
>> *fence,
>>337 struct i915_sw_fence 
>> *signaler,
>>338 wait_queue_entry_t 
>> *wq, gfp_t gfp)
>>339   {
>>340   unsigned int pending;
>>341   unsigned long flags;
>>342   
>>343   debug_fence_assert(fence);
>>  > 344   might_alloc(gfp);
>>345   
>>346   if (i915_sw_fence_done(signaler)) {
>>347   i915_sw_fence_set_error_once(fence, 
>> signaler->error);
>>348   return 0;
>>349   }
>>350   
>>351   debug_fence_assert(signaler);
>>352   
>>353   /* The dependency graph must be acyclic. */
>>354   if (unlikely(i915_sw_fence_check_if_after(fence, 
>> signaler)))
>>355   return -EINVAL;
>>356   
>>357   pending = I915_SW_FENCE_FLAG_FENCE;
>>358   if (!wq) {
>>359   wq = kmalloc(sizeof(*wq), gfp);
>>360   if (!wq) {
>>361   if (!gfpflags_allow_blocking(gfp))
>>362   return -ENOMEM;
>>363   
>>364   i915_sw_fence_wait(signaler);
>>365   i915_sw_fence_set_error_once(fence, 
>> signaler->error);
>>366   return 0;
>>367   }
>>368   
>>369   pending |= I915_SW_FENCE_FLAG_ALLOC;
>>370   }
>>371   
>>372   INIT_LIST_HEAD(&wq->entry);
>>373   wq->flags = pending;
>>374   wq->func = i915_sw_fence_wake;
>>375   wq->private = fence;
>>376   
>>377   i915_sw_fence_await(fence);
>>378   
>>379   spin_lock_irqsave(&signaler->wait.lock, flags);
>>380   if (likely(!i915_sw_fence_done(signaler))) {
>>381   __add_wait_queue_entry_tail(&signaler->wait, 
>> wq);
>>382   pending = 1;
>>383   } else {
>>384   i915_sw_fence_wake(wq, 0, signaler->error, 
>> NULL);
>>385   pending = 0;
>>386   }
>>387   spin_unl

Re: [Intel-gfx] [PATCH] drm/i915: Use might_alloc()

2021-04-30 Thread Daniel Vetter
On Fri, Apr 30, 2021 at 12:31:27AM +0800, kernel test robot wrote:
> Hi Bernard,
> 
> Thank you for the patch! Yet something to improve:
> 
> [auto build test ERROR on drm-intel/for-linux-next]
> [also build test ERROR on v5.12 next-20210429]
> [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/Bernard-Zhao/drm-i915-Use-might_alloc/20210429-104516
> base:   git://anongit.freedesktop.org/drm-intel for-linux-next
> config: x86_64-rhel-8.3-kselftests (attached as .config)
> compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
> reproduce (this is a W=1 build):
> # 
> https://github.com/0day-ci/linux/commit/9fbd0c1741ce06241105d753ff3432ab55f3e94a
> git remote add linux-review https://github.com/0day-ci/linux
> git fetch --no-tags linux-review 
> Bernard-Zhao/drm-i915-Use-might_alloc/20210429-104516
> git checkout 9fbd0c1741ce06241105d753ff3432ab55f3e94a
> # save the attached .config to linux build tree
> make W=1 W=1 ARCH=x86_64 
> 
> If you fix the issue, kindly add following tag as appropriate
> Reported-by: kernel test robot 
> 
> All errors (new ones prefixed by >>):
> 
>drivers/gpu/drm/i915/i915_sw_fence.c: In function 
> '__i915_sw_fence_await_sw_fence':
> >> drivers/gpu/drm/i915/i915_sw_fence.c:344:2: error: implicit declaration of 
> >> function 'might_alloc'; did you mean 'might_lock'? 
> >> [-Werror=implicit-function-declaration]
>  344 |  might_alloc(gfp);
>  |  ^~~
>  |  might_lock
>cc1: some warnings being treated as errors

I think you're missing an include or something. The other patch you've
done seems good, I queued that up in drm-intel-gt-next for 5.14.

Thanks, Daniel

> 
> 
> vim +344 drivers/gpu/drm/i915/i915_sw_fence.c
> 
>335
>336static int __i915_sw_fence_await_sw_fence(struct i915_sw_fence 
> *fence,
>337  struct i915_sw_fence 
> *signaler,
>338  wait_queue_entry_t 
> *wq, gfp_t gfp)
>339{
>340unsigned int pending;
>341unsigned long flags;
>342
>343debug_fence_assert(fence);
>  > 344might_alloc(gfp);
>345
>346if (i915_sw_fence_done(signaler)) {
>347i915_sw_fence_set_error_once(fence, 
> signaler->error);
>348return 0;
>349}
>350
>351debug_fence_assert(signaler);
>352
>353/* The dependency graph must be acyclic. */
>354if (unlikely(i915_sw_fence_check_if_after(fence, 
> signaler)))
>355return -EINVAL;
>356
>357pending = I915_SW_FENCE_FLAG_FENCE;
>358if (!wq) {
>359wq = kmalloc(sizeof(*wq), gfp);
>360if (!wq) {
>361if (!gfpflags_allow_blocking(gfp))
>362return -ENOMEM;
>363
>364i915_sw_fence_wait(signaler);
>365i915_sw_fence_set_error_once(fence, 
> signaler->error);
>366return 0;
>367}
>368
>369pending |= I915_SW_FENCE_FLAG_ALLOC;
>370}
>371
>372INIT_LIST_HEAD(&wq->entry);
>373wq->flags = pending;
>374wq->func = i915_sw_fence_wake;
>375wq->private = fence;
>376
>377i915_sw_fence_await(fence);
>378
>379spin_lock_irqsave(&signaler->wait.lock, flags);
>380if (likely(!i915_sw_fence_done(signaler))) {
>381__add_wait_queue_entry_tail(&signaler->wait, 
> wq);
>382pending = 1;
>383} else {
>384i915_sw_fence_wake(wq, 0, signaler->error, 
> NULL);
>385pending = 0;
>386}
>387spin_unlock_irqrestore(&signaler->wait.lock, flags);
>388
>389return pending;
>390}
>391
> 
> ---
> 0-DAY CI Kernel Test Service, Intel Corporation
> https://lists.01.org/hyperkitty/list/kbuild-...@lists.01.org



-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/inte

Re: [Intel-gfx] [PATCH] drm/i915: Use might_alloc()

2021-04-29 Thread kernel test robot
Hi Bernard,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on drm-intel/for-linux-next]
[also build test ERROR on v5.12 next-20210429]
[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/Bernard-Zhao/drm-i915-Use-might_alloc/20210429-104516
base:   git://anongit.freedesktop.org/drm-intel for-linux-next
config: x86_64-rhel-8.3-kselftests (attached as .config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
reproduce (this is a W=1 build):
# 
https://github.com/0day-ci/linux/commit/9fbd0c1741ce06241105d753ff3432ab55f3e94a
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review 
Bernard-Zhao/drm-i915-Use-might_alloc/20210429-104516
git checkout 9fbd0c1741ce06241105d753ff3432ab55f3e94a
# save the attached .config to linux build tree
make W=1 W=1 ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot 

All errors (new ones prefixed by >>):

   drivers/gpu/drm/i915/i915_sw_fence.c: In function 
'__i915_sw_fence_await_sw_fence':
>> drivers/gpu/drm/i915/i915_sw_fence.c:344:2: error: implicit declaration of 
>> function 'might_alloc'; did you mean 'might_lock'? 
>> [-Werror=implicit-function-declaration]
 344 |  might_alloc(gfp);
 |  ^~~
 |  might_lock
   cc1: some warnings being treated as errors


vim +344 drivers/gpu/drm/i915/i915_sw_fence.c

   335  
   336  static int __i915_sw_fence_await_sw_fence(struct i915_sw_fence *fence,
   337struct i915_sw_fence 
*signaler,
   338wait_queue_entry_t *wq, gfp_t 
gfp)
   339  {
   340  unsigned int pending;
   341  unsigned long flags;
   342  
   343  debug_fence_assert(fence);
 > 344  might_alloc(gfp);
   345  
   346  if (i915_sw_fence_done(signaler)) {
   347  i915_sw_fence_set_error_once(fence, signaler->error);
   348  return 0;
   349  }
   350  
   351  debug_fence_assert(signaler);
   352  
   353  /* The dependency graph must be acyclic. */
   354  if (unlikely(i915_sw_fence_check_if_after(fence, signaler)))
   355  return -EINVAL;
   356  
   357  pending = I915_SW_FENCE_FLAG_FENCE;
   358  if (!wq) {
   359  wq = kmalloc(sizeof(*wq), gfp);
   360  if (!wq) {
   361  if (!gfpflags_allow_blocking(gfp))
   362  return -ENOMEM;
   363  
   364  i915_sw_fence_wait(signaler);
   365  i915_sw_fence_set_error_once(fence, 
signaler->error);
   366  return 0;
   367  }
   368  
   369  pending |= I915_SW_FENCE_FLAG_ALLOC;
   370  }
   371  
   372  INIT_LIST_HEAD(&wq->entry);
   373  wq->flags = pending;
   374  wq->func = i915_sw_fence_wake;
   375  wq->private = fence;
   376  
   377  i915_sw_fence_await(fence);
   378  
   379  spin_lock_irqsave(&signaler->wait.lock, flags);
   380  if (likely(!i915_sw_fence_done(signaler))) {
   381  __add_wait_queue_entry_tail(&signaler->wait, wq);
   382  pending = 1;
   383  } else {
   384  i915_sw_fence_wake(wq, 0, signaler->error, NULL);
   385  pending = 0;
   386  }
   387  spin_unlock_irqrestore(&signaler->wait.lock, flags);
   388  
   389  return pending;
   390  }
   391  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-...@lists.01.org


.config.gz
Description: application/gzip
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx


[Intel-gfx] [PATCH] drm/i915: Use might_alloc()

2021-04-29 Thread Bernard Zhao
This maybe uses lockdep through the fs_reclaim annotations.

Signed-off-by: Bernard Zhao 
---
 drivers/gpu/drm/i915/i915_request.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/i915_request.c 
b/drivers/gpu/drm/i915/i915_request.c
index 9165971c3c47..7e1aa540aa0d 100644
--- a/drivers/gpu/drm/i915/i915_request.c
+++ b/drivers/gpu/drm/i915/i915_request.c
@@ -928,7 +928,7 @@ __i915_request_create(struct intel_context *ce, gfp_t gfp)
u32 seqno;
int ret;
 
-   might_sleep_if(gfpflags_allow_blocking(gfp));
+   might_alloc(gfp);
 
/* Check that the caller provided an already pinned context */
__intel_context_pin(ce);
-- 
2.31.0

___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx


[Intel-gfx] [PATCH] drm/i915: Use might_alloc()

2021-04-29 Thread Bernard Zhao
This maybe used lockdep through the fs_reclaim annotations.

Signed-off-by: Bernard Zhao 
---
 drivers/gpu/drm/i915/i915_sw_fence.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_sw_fence.c 
b/drivers/gpu/drm/i915/i915_sw_fence.c
index 2744558f3050..cc1b49cabb6c 100644
--- a/drivers/gpu/drm/i915/i915_sw_fence.c
+++ b/drivers/gpu/drm/i915/i915_sw_fence.c
@@ -341,7 +341,7 @@ static int __i915_sw_fence_await_sw_fence(struct 
i915_sw_fence *fence,
unsigned long flags;
 
debug_fence_assert(fence);
-   might_sleep_if(gfpflags_allow_blocking(gfp));
+   might_alloc(gfp);
 
if (i915_sw_fence_done(signaler)) {
i915_sw_fence_set_error_once(fence, signaler->error);
@@ -477,7 +477,7 @@ int i915_sw_fence_await_dma_fence(struct i915_sw_fence 
*fence,
int ret;
 
debug_fence_assert(fence);
-   might_sleep_if(gfpflags_allow_blocking(gfp));
+   might_alloc(gfp);
 
if (dma_fence_is_signaled(dma)) {
i915_sw_fence_set_error_once(fence, dma->error);
@@ -576,7 +576,7 @@ int i915_sw_fence_await_reservation(struct i915_sw_fence 
*fence,
int ret = 0, pending;
 
debug_fence_assert(fence);
-   might_sleep_if(gfpflags_allow_blocking(gfp));
+   might_alloc(gfp);
 
if (write) {
struct dma_fence **shared;
-- 
2.31.0

___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx