From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7AB31C761AF for ; Thu, 30 Mar 2023 07:17:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230498AbjC3HRm (ORCPT ); Thu, 30 Mar 2023 03:17:42 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50924 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229531AbjC3HRj (ORCPT ); Thu, 30 Mar 2023 03:17:39 -0400 Received: from 189.cn (ptr.189.cn [183.61.185.104]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id C9CA1E4 for ; Thu, 30 Mar 2023 00:17:37 -0700 (PDT) HMM_SOURCE_IP: 10.64.8.41:52436.1038174395 HMM_ATTACHE_NUM: 0000 HMM_SOURCE_TYPE: SMTP Received: from clientip-114.242.206.180 (unknown [10.64.8.41]) by 189.cn (HERMES) with SMTP id 291B51004BF; Thu, 30 Mar 2023 15:17:36 +0800 (CST) Received: from ([114.242.206.180]) by gateway-151646-dep-7b48884fd-ljp89 with ESMTP id 6b506376444e4fc7abb957a239188155 for tzimmermann@suse.de; Thu, 30 Mar 2023 15:17:37 CST X-Transaction-ID: 6b506376444e4fc7abb957a239188155 X-Real-From: 15330273260@189.cn X-Receive-IP: 114.242.206.180 X-MEDUSA-Status: 0 Sender: 15330273260@189.cn Message-ID: <2e6ec82f-dfde-0f3a-7980-136cea161d6b@189.cn> Date: Thu, 30 Mar 2023 15:17:35 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.9.0 Subject: Re: [PATCH] drm/fbdev-generic: optimize out a redundant assignment clause Content-Language: en-US To: Thomas Zimmermann , Lucas De Marchi Cc: David Airlie , liyi , linux-kernel@vger.kernel.org, Sui Jingfeng <15330273260@189.cn>, dri-devel@lists.freedesktop.org References: <20230325074636.136833-1-15330273260@189.cn> <20230330041726.w7boceq7ljymvfq2@ldmartin-desk2> From: Sui Jingfeng <15330273260@189.cn> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, On 2023/3/30 14:57, Thomas Zimmermann wrote: > Hi > > Am 30.03.23 um 06:17 schrieb Lucas De Marchi: >> On Wed, Mar 29, 2023 at 11:04:17AM +0200, Thomas Zimmermann wrote: >>> (cc'ing Lucas) >>> >>> Hi >>> >>> Am 25.03.23 um 08:46 schrieb Sui Jingfeng: >>>>  The assignment already done in drm_client_buffer_vmap(), >>>>  just trival clean, no functional change. >>>> >>>> Signed-off-by: Sui Jingfeng <15330273260@189.cn> >>>> --- >>>>  drivers/gpu/drm/drm_fbdev_generic.c | 5 ++--- >>>>  1 file changed, 2 insertions(+), 3 deletions(-) >>>> >>>> diff --git a/drivers/gpu/drm/drm_fbdev_generic.c >>>> b/drivers/gpu/drm/drm_fbdev_generic.c >>>> index 4d6325e91565..1da48e71c7f1 100644 >>>> --- a/drivers/gpu/drm/drm_fbdev_generic.c >>>> +++ b/drivers/gpu/drm/drm_fbdev_generic.c >>>> @@ -282,7 +282,7 @@ static int drm_fbdev_damage_blit(struct >>>> drm_fb_helper *fb_helper, >>>>                   struct drm_clip_rect *clip) >>>>  { >>>>      struct drm_client_buffer *buffer = fb_helper->buffer; >>>> -    struct iosys_map map, dst; >>>> +    struct iosys_map map; >>>>      int ret; >>>>      /* >>>> @@ -302,8 +302,7 @@ static int drm_fbdev_damage_blit(struct >>>> drm_fb_helper *fb_helper, >>>>      if (ret) >>>>          goto out; >>>> -    dst = map; >>>> -    drm_fbdev_damage_blit_real(fb_helper, clip, &dst); >>>> +    drm_fbdev_damage_blit_real(fb_helper, clip, &map); >>> >>> I see what you're doing and it's probably correct in this case. >>> >>> But there's a larger issue with this iosys interfaces. Sometimes the >>> address has to be modified (see calls of iosys_map_incr()). That can >>> prevent incorrect uses of the mapping in other places, especially in >>> unmap code. >> >> using a initializer for the cases it's needed IMO would make these kind >> of problems go away, because then the intent is explicit >> >>> >>> I think it would make sense to consider a separate structure for the >>> I/O location. The buffer as a whole would still be represented by >>> struct iosys_map.  And that new structure, let's call it struct >>> iosys_ptr, would point to an actual location within the buffer's >> >> sounds fine to me, but I'd have to take a deeper look later (or when >> someone writes the patch).  It seems we'd replicate almost the entire >> API to just accomodate the 2 structs.  And the different types will lead >> to confusion when one or the other should be used > > I think we can split the current interface onto two categories: > mapping and I/O. The former would use iosys_map and the latter would > use iosys_ptr. And we'd need a helper that turns gets a ptr for a > given map. > > If I find the tine, I'll probably type up a patch. >  Here i fix a typo, 'tine' -> 'time' As far as i can see, they are two major type of memory in the system. System memory or VRAM,  for the gpu with dedicate video ram, VRAM is belong to the IO memory category. But there are system choose carveout part of system ram as video ram(i915?,  for example). the name iosys_map and iosys_ptr have no difference at the first sight, tell me which one is for mapping system ram and which one is for mapping vram? > Best regards > Thomas > >> >> thanks >> Lucas De Marchi >> >>> memory range. A few locations and helpers would need changes, but >>> there are not so many callers that it's an issue.  This would also >>> allow for a few debugging tests that ensure that iosys_ptr always >>> operates within the bounds of an iosys_map. >>> >>> I've long considered this idea, but there was no pressure to work on >>> it. Maybe now. >>> >>> Best regards >>> Thomas >>> >>>>      drm_client_buffer_vunmap(buffer); >>> >>> -- >>> Thomas Zimmermann >>> Graphics Driver Developer >>> SUSE Software Solutions Germany GmbH >>> Maxfeldstr. 5, 90409 Nürnberg, Germany >>> (HRB 36809, AG Nürnberg) >>> Geschäftsführer: Ivo Totev >> >> >> >