kern/131099: commit references a PR

dfilter service dfilter at FreeBSD.ORG
Wed Mar 4 12:30:07 PST 2009


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

From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:  
Subject: Re: kern/131099: commit references a PR
Date: Wed,  4 Mar 2009 20:26:51 +0000 (UTC)

 Author: netchild
 Date: Wed Mar  4 20:26:39 2009
 New Revision: 189370
 URL: http://svn.freebsd.org/changeset/base/189370
 
 Log:
   MFC r188572:
     Fix an edge-case of the linux readdir: We need the size of a linux dirent
     structure, not the size of a pointer to it.
   
     PR:		131099
     Submitted by:	Andreas Kies <andikies at gmail.com>
 
 Modified:
   stable/7/sys/   (props changed)
   stable/7/sys/compat/linux/linux_file.c
   stable/7/sys/contrib/pf/   (props changed)
   stable/7/sys/dev/ath/ath_hal/   (props changed)
   stable/7/sys/dev/cxgb/   (props changed)
 
 Modified: stable/7/sys/compat/linux/linux_file.c
 ==============================================================================
 --- stable/7/sys/compat/linux/linux_file.c	Wed Mar  4 18:36:48 2009	(r189369)
 +++ stable/7/sys/compat/linux/linux_file.c	Wed Mar  4 20:26:39 2009	(r189370)
 @@ -438,7 +438,7 @@ getdents_common(struct thread *td, struc
  		/* readdir(2) case. Always struct dirent. */
  		if (is64bit)
  			return (EINVAL);
 -		nbytes = sizeof(linux_dirent);
 +		nbytes = sizeof(*linux_dirent);
  		justone = 1;
  	} else
  		justone = 0;
 _______________________________________________
 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-emulation mailing list