Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-7]: src/sys/dev/pci/hdaudio Pull up following revision(s) (reques...



details:   https://anonhg.NetBSD.org/src/rev/b1ee6b6e5305
branches:  netbsd-7
changeset: 799629:b1ee6b6e5305
user:      riz <riz%NetBSD.org@localhost>
date:      Wed Nov 04 20:55:48 2015 +0000

description:
Pull up following revision(s) (requested by riastradh in ticket #898):
        sys/dev/pci/hdaudio/hdaudio.c: revision 1.2
Initialize dma.dma_sizereg to avoid copying uninitialized data later.
This field is not actually used here -- not clear it should be in
the hdaudio_dma structure at all.
Noted by Coverity, CID 979553.

diffstat:

 sys/dev/pci/hdaudio/hdaudio.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r 83be2e4b067c -r b1ee6b6e5305 sys/dev/pci/hdaudio/hdaudio.c
--- a/sys/dev/pci/hdaudio/hdaudio.c     Wed Nov 04 18:20:45 2015 +0000
+++ b/sys/dev/pci/hdaudio/hdaudio.c     Wed Nov 04 20:55:48 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: hdaudio.c,v 1.22.2.1 2015/09/04 15:07:08 martin Exp $ */
+/* $NetBSD: hdaudio.c,v 1.22.2.2 2015/11/04 20:55:48 riz Exp $ */
 
 /*
  * Copyright (c) 2009 Precedence Technologies Ltd <support%precedence.co.uk@localhost>
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hdaudio.c,v 1.22.2.1 2015/09/04 15:07:08 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hdaudio.c,v 1.22.2.2 2015/11/04 20:55:48 riz Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -1027,6 +1027,7 @@
        int i, err;
 
        dma.dma_size = sizeof(struct hdaudio_bdl_entry) * HDAUDIO_BDL_MAX;
+       dma.dma_sizereg = 0;
        err = hdaudio_dma_alloc(sc, &dma, BUS_DMA_COHERENT | BUS_DMA_NOCACHE);
        if (err)
                return NULL;



Home | Main Index | Thread Index | Old Index