kern/136226: commit references a PR

dfilter service dfilter at FreeBSD.ORG
Sun Jul 5 13:20:02 UTC 2009


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

From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:  
Subject: Re: kern/136226: commit references a PR
Date: Sun,  5 Jul 2009 13:17:29 +0000 (UTC)

 Author: jilles
 Date: Sun Jul  5 13:17:18 2009
 New Revision: 195361
 URL: http://svn.freebsd.org/changeset/base/195361
 
 Log:
   MFC ipcs(1) part of r189283 by kib
   
   This fixes display of shared memory segment sizes greater than 2 GB in
   ipcs -b.
   
   PR:		kern/136226
   Approved by:	ed (mentor)
 
 Modified:
   stable/7/usr.bin/ipcs/   (props changed)
   stable/7/usr.bin/ipcs/ipcs.c
 
 Modified: stable/7/usr.bin/ipcs/ipcs.c
 ==============================================================================
 --- stable/7/usr.bin/ipcs/ipcs.c	Sun Jul  5 08:40:26 2009	(r195360)
 +++ stable/7/usr.bin/ipcs/ipcs.c	Sun Jul  5 13:17:18 2009	(r195361)
 @@ -452,8 +452,8 @@ print_kshmptr(int i, int option, struct 
  		    kshmptr->u.shm_nattch);
  
  	if (option & BIGGEST)
 -		printf(" %12d",
 -		    kshmptr->u.shm_segsz);
 +		printf(" %12zu",
 +		    kshmptr->shm_bsegsz);
  
  	if (option & PID)
  		printf(" %12d %12d",
 _______________________________________________
 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-bugs mailing list