Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 12 Feb 2011 13:50:10 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-multimedia@FreeBSD.org
Subject:   Re: kern/154259: commit references a PR
Message-ID:  <201102121350.p1CDoAr5067726@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/154259; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/154259: commit references a PR
Date: Sat, 12 Feb 2011 13:41:12 +0000 (UTC)

 Author: marius
 Date: Sat Feb 12 13:41:02 2011
 New Revision: 218607
 URL: http://svn.freebsd.org/changeset/base/218607
 
 Log:
   MFC: r218478
   
   Correct signedness and off-by-one issues in parameters used for DMA tag
   creation.
   
   PR:		154259
   Submitted by:	Vladislav Movchan (partially)
 
 Modified:
   stable/7/sys/dev/sound/pci/emu10k1.c
   stable/7/sys/dev/sound/pci/emu10kx.c
 Directory Properties:
   stable/7/sys/   (props changed)
   stable/7/sys/cddl/contrib/opensolaris/   (props changed)
   stable/7/sys/contrib/dev/acpica/   (props changed)
   stable/7/sys/contrib/pf/   (props changed)
 
 Modified: stable/7/sys/dev/sound/pci/emu10k1.c
 ==============================================================================
 --- stable/7/sys/dev/sound/pci/emu10k1.c	Sat Feb 12 13:41:00 2011	(r218606)
 +++ stable/7/sys/dev/sound/pci/emu10k1.c	Sat Feb 12 13:41:02 2011	(r218607)
 @@ -2012,7 +2012,7 @@ emu_pci_attach(device_t dev)
  
  	if (bus_dma_tag_create(/*parent*/bus_get_dma_tag(dev), /*alignment*/2,
  		/*boundary*/0,
 -		/*lowaddr*/1 << 31, /* can only access 0-2gb */
 +		/*lowaddr*/(1U << 31) - 1, /* can only access 0-2gb */
  		/*highaddr*/BUS_SPACE_MAXADDR,
  		/*filter*/NULL, /*filterarg*/NULL,
  		/*maxsize*/sc->bufsz, /*nsegments*/1, /*maxsegz*/0x3ffff,
 
 Modified: stable/7/sys/dev/sound/pci/emu10kx.c
 ==============================================================================
 --- stable/7/sys/dev/sound/pci/emu10kx.c	Sat Feb 12 13:41:00 2011	(r218606)
 +++ stable/7/sys/dev/sound/pci/emu10kx.c	Sat Feb 12 13:41:02 2011	(r218607)
 @@ -2696,7 +2696,7 @@ emu_init(struct emu_sc_info *sc)
  
  	if (bus_dma_tag_create( /* parent */ bus_get_dma_tag(sc->dev),
  	     /* alignment */ 2, /* boundary */ 0,
 -	     /* lowaddr */ 1 << 31,	/* can only access 0-2gb */
 +	     /* lowaddr */ (1U << 31) - 1,	/* can only access 0-2gb */
  	     /* highaddr */ BUS_SPACE_MAXADDR,
  	     /* filter */ NULL, /* filterarg */ NULL,
  	     /* maxsize */ EMU_MAX_BUFSZ, /* nsegments */ 1, /* maxsegz */ 0x3ffff,
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201102121350.p1CDoAr5067726>