All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH RFC 1/2] scatterlist: add I/O variant of sg_pcopy & sg_copy
@ 2021-06-28 17:09 kernel test robot
  0 siblings, 0 replies; 8+ messages in thread
From: kernel test robot @ 2021-06-28 17:09 UTC (permalink / raw)
  To: kbuild

[-- Attachment #1: Type: text/plain, Size: 3969 bytes --]

CC: kbuild-all(a)lists.01.org
In-Reply-To: <20210628123411.119778-2-narmstrong@baylibre.com>
References: <20210628123411.119778-2-narmstrong@baylibre.com>
TO: Neil Armstrong <narmstrong@baylibre.com>

Hi Neil,

[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on linus/master]
[also build test WARNING on v5.13 next-20210628]
[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/Neil-Armstrong/scatterlist-add-I-O-variant-of-sg_pcopy-sg_copy-and-use-them/20210628-203511
base:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 62fb9874f5da54fdb243003b386128037319b219
:::::: branch date: 5 hours ago
:::::: commit date: 5 hours ago
config: sparc-randconfig-s032-20210628 (attached as .config)
compiler: sparc64-linux-gcc (GCC) 9.3.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # apt-get install sparse
        # sparse version: v0.6.3-341-g8af24329-dirty
        # https://github.com/0day-ci/linux/commit/743501a6aa75533e65fbb9df89b85ec69ca27a3e
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Neil-Armstrong/scatterlist-add-I-O-variant-of-sg_pcopy-sg_copy-and-use-them/20210628-203511
        git checkout 743501a6aa75533e65fbb9df89b85ec69ca27a3e
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' ARCH=sparc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>


sparse warnings: (new ones prefixed by >>)
   lib/scatterlist.c:1050:8: sparse: sparse: symbol 'sg_copy_from_io' redeclared with different type (incompatible argument 3 (different address spaces)):
>> lib/scatterlist.c:1050:8: sparse:    unsigned long extern [addressable] [toplevel] [unsigned] sg_copy_from_io( ... )
   lib/scatterlist.c: note: in included file:
   include/linux/scatterlist.h:319:8: sparse: note: previously declared as:
>> include/linux/scatterlist.h:319:8: sparse:    unsigned long extern [addressable] [toplevel] [unsigned] sg_copy_from_io( ... )

vim +1050 lib/scatterlist.c

df642cea25c90d Akinobu Mita   2013-07-08  1039  
743501a6aa7553 Neil Armstrong 2021-06-28  1040  /**
743501a6aa7553 Neil Armstrong 2021-06-28  1041   * sg_copy_from_io - Copy from an I/O mapped buffer to an SG list
743501a6aa7553 Neil Armstrong 2021-06-28  1042   * @sgl:		 The SG list
743501a6aa7553 Neil Armstrong 2021-06-28  1043   * @nents:		 Number of SG entries
743501a6aa7553 Neil Armstrong 2021-06-28  1044   * @buf:		 Where to copy from
743501a6aa7553 Neil Armstrong 2021-06-28  1045   * @buflen:		 The number of bytes to copy
743501a6aa7553 Neil Armstrong 2021-06-28  1046   *
743501a6aa7553 Neil Armstrong 2021-06-28  1047   * Returns the number of copied bytes.
743501a6aa7553 Neil Armstrong 2021-06-28  1048   *
743501a6aa7553 Neil Armstrong 2021-06-28  1049   **/
743501a6aa7553 Neil Armstrong 2021-06-28 @1050  size_t sg_copy_from_io(struct scatterlist *sgl, unsigned int nents,
743501a6aa7553 Neil Armstrong 2021-06-28  1051  		       const void *buf, size_t buflen)
743501a6aa7553 Neil Armstrong 2021-06-28  1052  {
743501a6aa7553 Neil Armstrong 2021-06-28  1053  	return sg_copy_io(sgl, nents, (void __iomem *)buf, buflen, 0, false);
743501a6aa7553 Neil Armstrong 2021-06-28  1054  }
743501a6aa7553 Neil Armstrong 2021-06-28  1055  EXPORT_SYMBOL(sg_copy_from_io);
743501a6aa7553 Neil Armstrong 2021-06-28  1056  

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

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 25612 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread
* Re: [PATCH RFC 1/2] scatterlist: add I/O variant of sg_pcopy & sg_copy
@ 2021-06-28 20:14 kernel test robot
  0 siblings, 0 replies; 8+ messages in thread
From: kernel test robot @ 2021-06-28 20:14 UTC (permalink / raw)
  To: kbuild

[-- Attachment #1: Type: text/plain, Size: 3769 bytes --]

CC: kbuild-all(a)lists.01.org
In-Reply-To: <20210628123411.119778-2-narmstrong@baylibre.com>
References: <20210628123411.119778-2-narmstrong@baylibre.com>
TO: Neil Armstrong <narmstrong@baylibre.com>

Hi Neil,

[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on linus/master]
[also build test WARNING on v5.13 next-20210628]
[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/Neil-Armstrong/scatterlist-add-I-O-variant-of-sg_pcopy-sg_copy-and-use-them/20210628-203511
base:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 62fb9874f5da54fdb243003b386128037319b219
:::::: branch date: 8 hours ago
:::::: commit date: 8 hours ago
config: i386-randconfig-s001-20210628 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
reproduce:
        # apt-get install sparse
        # sparse version: v0.6.3-341-g8af24329-dirty
        # https://github.com/0day-ci/linux/commit/743501a6aa75533e65fbb9df89b85ec69ca27a3e
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Neil-Armstrong/scatterlist-add-I-O-variant-of-sg_pcopy-sg_copy-and-use-them/20210628-203511
        git checkout 743501a6aa75533e65fbb9df89b85ec69ca27a3e
        # save the attached .config to linux build tree
        make W=1 C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' ARCH=i386 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>


sparse warnings: (new ones prefixed by >>)
   lib/scatterlist.c:1050:8: sparse: sparse: symbol 'sg_copy_from_io' redeclared with different type (incompatible argument 3 (different address spaces)):
>> lib/scatterlist.c:1050:8: sparse:    unsigned int extern [addressable] [toplevel] [unsigned] sg_copy_from_io( ... )
   lib/scatterlist.c: note: in included file:
   include/linux/scatterlist.h:319:8: sparse: note: previously declared as:
>> include/linux/scatterlist.h:319:8: sparse:    unsigned int extern [addressable] [toplevel] [unsigned] sg_copy_from_io( ... )

vim +1050 lib/scatterlist.c

df642cea25c90d Akinobu Mita   2013-07-08  1039  
743501a6aa7553 Neil Armstrong 2021-06-28  1040  /**
743501a6aa7553 Neil Armstrong 2021-06-28  1041   * sg_copy_from_io - Copy from an I/O mapped buffer to an SG list
743501a6aa7553 Neil Armstrong 2021-06-28  1042   * @sgl:		 The SG list
743501a6aa7553 Neil Armstrong 2021-06-28  1043   * @nents:		 Number of SG entries
743501a6aa7553 Neil Armstrong 2021-06-28  1044   * @buf:		 Where to copy from
743501a6aa7553 Neil Armstrong 2021-06-28  1045   * @buflen:		 The number of bytes to copy
743501a6aa7553 Neil Armstrong 2021-06-28  1046   *
743501a6aa7553 Neil Armstrong 2021-06-28  1047   * Returns the number of copied bytes.
743501a6aa7553 Neil Armstrong 2021-06-28  1048   *
743501a6aa7553 Neil Armstrong 2021-06-28  1049   **/
743501a6aa7553 Neil Armstrong 2021-06-28 @1050  size_t sg_copy_from_io(struct scatterlist *sgl, unsigned int nents,
743501a6aa7553 Neil Armstrong 2021-06-28  1051  		       const void *buf, size_t buflen)
743501a6aa7553 Neil Armstrong 2021-06-28  1052  {
743501a6aa7553 Neil Armstrong 2021-06-28  1053  	return sg_copy_io(sgl, nents, (void __iomem *)buf, buflen, 0, false);
743501a6aa7553 Neil Armstrong 2021-06-28  1054  }
743501a6aa7553 Neil Armstrong 2021-06-28  1055  EXPORT_SYMBOL(sg_copy_from_io);
743501a6aa7553 Neil Armstrong 2021-06-28  1056  

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

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 50720 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread
* [PATCH RFC 0/2] scatterlist: add I/O variant of sg_pcopy & sg_copy and use them
@ 2021-06-28 12:34 Neil Armstrong
  2021-06-28 12:34   ` Neil Armstrong
  0 siblings, 1 reply; 8+ messages in thread
From: Neil Armstrong @ 2021-06-28 12:34 UTC (permalink / raw)
  To: jgg, leon, m.szyprowski, robin.murphy, ulf.hansson
  Cc: torvalds, khilman, jbrunet, linux-mmc, linux-amlogic,
	linux-arm-kernel, linux-kernel, Neil Armstrong

A local variant of sg_copy_buffer has been introduced in the meson-gx mmc driver [1] after
a mempcy optimization, fixing the iomem buffer manipulation and the reported system crash [2].

But, the fix is suboptimal in terms of performace/ugliness [3] and a proper I/O variant of
sg_copy_buffer should be added and used instead.

[1] https://lore.kernel.org/r/20210609150230.9291-1-narmstrong@baylibre.com
[2] https://lore.kernel.org/r/acb244ad-0759-5a96-c659-5c23003d3dcd@samsung.com
[3] https://lore.kernel.org/r/CAPDyKFrLSMpPJOgd5e4B1x3Vwfg4q23zgy4ESc8EmFL2MnyK7g@mail.gmail.com

Neil Armstrong (2):
  scatterlist: add I/O variant of sg_pcopy & sg_copy
  mmc: meson-gx: use sg_copy_to/from_io instead of local version

 drivers/mmc/host/meson-gx-mmc.c |  53 +++-----------
 include/linux/scatterlist.h     |  14 ++++
 lib/scatterlist.c               | 119 ++++++++++++++++++++++++++++++++
 3 files changed, 143 insertions(+), 43 deletions(-)

-- 
2.25.1


_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-06-28 20:14 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-28 17:09 [PATCH RFC 1/2] scatterlist: add I/O variant of sg_pcopy & sg_copy kernel test robot
  -- strict thread matches above, loose matches on Subject: below --
2021-06-28 20:14 kernel test robot
2021-06-28 12:34 [PATCH RFC 0/2] scatterlist: add I/O variant of sg_pcopy & sg_copy and use them Neil Armstrong
2021-06-28 12:34 ` [PATCH RFC 1/2] scatterlist: add I/O variant of sg_pcopy & sg_copy Neil Armstrong
2021-06-28 12:34   ` Neil Armstrong
2021-06-28 12:34   ` Neil Armstrong
2021-06-28 13:40   ` Robin Murphy
2021-06-28 13:40     ` Robin Murphy
2021-06-28 13:40     ` Robin Murphy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.