kern/154259: commit references a PR

dfilter service dfilter at FreeBSD.ORG
Wed Feb 9 11:30:14 UTC 2011


The following reply was made to PR kern/154259; it has been noted by GNATS.

From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:  
Subject: Re: kern/154259: commit references a PR
Date: Wed,  9 Feb 2011 11:29:09 +0000 (UTC)

 Author: marius
 Date: Wed Feb  9 11:28:57 2011
 New Revision: 218478
 URL: http://svn.freebsd.org/changeset/base/218478
 
 Log:
   Correct signedness and off-by-one issues in parameters used for DMA tag
   creation.
   
   PR:		154259
   Submitted by:	Vladislav Movchan (partially)
   MFC after:	3 days
 
 Modified:
   head/sys/dev/sound/pci/emu10k1.c
   head/sys/dev/sound/pci/emu10kx.c
 
 Modified: head/sys/dev/sound/pci/emu10k1.c
 ==============================================================================
 --- head/sys/dev/sound/pci/emu10k1.c	Wed Feb  9 10:06:31 2011	(r218477)
 +++ head/sys/dev/sound/pci/emu10k1.c	Wed Feb  9 11:28:57 2011	(r218478)
 @@ -2017,7 +2017,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: head/sys/dev/sound/pci/emu10kx.c
 ==============================================================================
 --- head/sys/dev/sound/pci/emu10kx.c	Wed Feb  9 10:06:31 2011	(r218477)
 +++ head/sys/dev/sound/pci/emu10kx.c	Wed Feb  9 11:28:57 2011	(r218478)
 @@ -2700,7 +2700,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 at freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe at freebsd.org"
 


More information about the freebsd-multimedia mailing list