All of lore.kernel.org
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: "Hans Hu(SH-RD)" <HansHu@zhaoxin.com>
Cc: "Tony W. Wang(BJ-RD)" <TonyWWang@zhaoxin.com>,
	"'alsa-devel@alsa-project.org'" <alsa-devel@alsa-project.org>,
	"Tim Guo(BJ-RD)" <TimGuo@zhaoxin.com>,
	"Annie Liu(BJ-RD)" <AnnieLiu@zhaoxin.com>
Subject: Re: 答复:  A bug about cache inconsistency report
Date: Tue, 07 Aug 2018 14:00:27 +0200	[thread overview]
Message-ID: <s5h1sba5quc.wl-tiwai@suse.de> (raw)
In-Reply-To: <e9ee508d2db4499387d1a2d175ca269d@zhaoxin.com>

On Tue, 07 Aug 2018 12:59:04 +0200,
Hans Hu(SH-RD) wrote:
> 
> > >Then the next step would be to fake sg-buffer from this straight
> > >buffer.  Revert the above, and modify sgbuf.c to the following:
> > >- Allocate a large continuous buffer
> > >- Assign each page in this large buffer
> >
> > >If this still works, it's not about vmap, but it just means that the
> > >physically ordered pages do matter -- implicitly showing that the
> > >snooping behavior isn't properly turned on / off on the controller.
> >
> > To fake SG-buffer, I did this test: restore all the codes to the original, then added some codes in snd_malloc_sgbuf_pages() like below, the result is badly niose.
> 
> >Not really what I meant.  Rather something like below (totally untested).
> 
> [Hans :] I know what you mean now and complete code like below, but the result is still noise.

OK, so indeed the vmapped address does seem matter.  Interesting.
What kind of user access does produce the noise?  Does it via aplay
mmap mode, too?

In anyway, if the vmap is a problem, it might be worked around a patch
like below (again totally untested and not sure whether it's correct).


Takashi

---
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -410,12 +410,23 @@ static void __mark_pages_wc(struct azx *chip, struct snd_dma_buffer *dmab, bool
 #ifdef CONFIG_SND_DMA_SGBUF
 	if (dmab->dev.type == SNDRV_DMA_TYPE_DEV_SG) {
 		struct snd_sg_buf *sgbuf = dmab->private_data;
+		pgprot_t prot;
+		void *new_area;
+
 		if (chip->driver_type == AZX_DRIVER_CMEDIA)
 			return; /* deal with only CORB/RIRB buffers */
-		if (on)
+		if (on) {
 			set_pages_array_wc(sgbuf->page_table, sgbuf->pages);
-		else
+			prot = pgprot_noncached(PAGE_KERNEL);
+		} else {
 			set_pages_array_wb(sgbuf->page_table, sgbuf->pages);
+			prot = PAGE_KERNEL;
+		}
+		new_area = vmap(sgbuf->page_table, sgbuf->pages, VM_MAP, prot);
+		if (WARN_ON(!new_area))
+			return;
+		vunmap(dmab->area);
+		dmab->area = new_area;
 		return;
 	}
 #endif

  reply	other threads:[~2018-08-07 12:00 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-07  9:00 A bug about cache inconsistency report Hans Hu(SH-RD)
2018-08-07  9:25 ` Takashi Iwai
2018-08-07 10:59   ` 答复: " Hans Hu(SH-RD)
2018-08-07 12:00     ` Takashi Iwai [this message]
2018-08-08  9:54       ` 答复: " Hans Hu(SH-RD)
2018-08-08 10:04         ` Takashi Iwai
2018-08-08 10:44           ` 答复: " Hans Hu(SH-RD)
2018-08-08 11:02             ` Takashi Iwai
  -- strict thread matches above, loose matches on Subject: below --
2018-08-08 11:07 Hans Hu(SH-RD)
2018-08-10 15:15 ` Takashi Iwai
2018-08-13  6:06   ` 答复: " Hans Hu(SH-RD)
2018-08-02  8:22 Hans Hu(SH-RD)
2018-08-02  8:50 ` Takashi Iwai
2018-08-02 10:56   ` 答复: " Hans Hu(SH-RD)
2018-08-02 11:52     ` Takashi Iwai
2018-07-31 10:52 Hans Hu(SH-RD)
2018-07-31 11:59 ` Takashi Iwai
     [not found]   ` <05a9e8e374994ada9d195b7cc6a08d07@zhaoxin.com>
2018-07-31 13:55     ` 答复: " Takashi Iwai

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=s5h1sba5quc.wl-tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=AnnieLiu@zhaoxin.com \
    --cc=HansHu@zhaoxin.com \
    --cc=TimGuo@zhaoxin.com \
    --cc=TonyWWang@zhaoxin.com \
    --cc=alsa-devel@alsa-project.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 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.