From: kbuild test robot <lkp@intel.com>
To: Vignesh R <vigneshr@ti.com>
Cc: kbuild-all@01.org, Mark Brown <broonie@kernel.org>,
linux-spi@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-omap@vger.kernel.org, Vignesh R <vigneshr@ti.com>
Subject: Re: [PATCH 2/2] spi: spi-ti-qspi: Use bounce buffer if read buffer is not DMA'ble
Date: Tue, 4 Apr 2017 18:56:42 +0800 [thread overview]
Message-ID: <201704041842.9HK01csi%fengguang.wu@intel.com> (raw)
In-Reply-To: <20170331114950.21489-3-vigneshr@ti.com>
[-- Attachment #1: Type: text/plain, Size: 2066 bytes --]
Hi Vignesh,
[auto build test WARNING on spi/for-next]
[also build test WARNING on v4.11-rc5 next-20170404]
[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/Vignesh-R/spi-ti-qspi-Handle-vmalloc-d-buffers/20170403-030332
base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
config: tile-allmodconfig (attached as .config)
compiler: tilegx-linux-gcc (GCC) 4.6.2
reproduce:
wget https://raw.githubusercontent.com/01org/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
make.cross ARCH=tile
All warnings (new ones prefixed by >>):
drivers//spi/spi-ti-qspi.c: In function 'ti_qspi_dma_bounce_buffer':
drivers//spi/spi-ti-qspi.c:440:20: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
>> drivers//spi/spi-ti-qspi.c:449:21: warning: comparison of distinct pointer types lacks a cast [enabled by default]
drivers//spi/spi-ti-qspi.c:455:10: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
vim +449 drivers//spi/spi-ti-qspi.c
434 }
435
436 static int ti_qspi_dma_bounce_buffer(struct ti_qspi *qspi,
437 struct spi_flash_read_message *msg)
438 {
439 size_t readsize = msg->len;
> 440 unsigned int to = (unsigned int)msg->buf;
441 dma_addr_t dma_src = qspi->mmap_phys_base + msg->from;
442 int ret = 0;
443
444 /*
445 * Use bounce buffer as FS like jffs2, ubifs may pass
446 * buffers that does not belong to kernel lowmem region.
447 */
448 while (readsize != 0) {
> 449 size_t xfer_len = min(QSPI_DMA_BUFFER_SIZE, readsize);
450
451 ret = ti_qspi_dma_xfer(qspi, qspi->rx_bb_dma_addr,
452 dma_src, xfer_len);
---
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: 48046 bytes --]
prev parent reply other threads:[~2017-04-04 10:57 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-31 11:49 [PATCH 0/2] spi-ti-qspi: Handle vmalloc'd buffers Vignesh R
2017-03-31 11:49 ` [PATCH 1/2] spi: Add can_dma like interface for spi_flash_read Vignesh R
2017-04-21 17:29 ` Applied "spi: Add can_dma like interface for spi_flash_read" to the spi tree Mark Brown
2017-03-31 11:49 ` [PATCH 2/2] spi: spi-ti-qspi: Use bounce buffer if read buffer is not DMA'ble Vignesh R
2017-04-02 23:33 ` kbuild test robot
2017-04-03 6:22 ` Vignesh R
2017-04-04 10:56 ` 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=201704041842.9HK01csi%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=broonie@kernel.org \
--cc=kbuild-all@01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=linux-spi@vger.kernel.org \
--cc=vigneshr@ti.com \
/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®