Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 5 Oct 2002 00:37:05 -0400 (EDT)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Brian Feldman <green@FreeBSD.org>
Cc:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   Re: PERFORCE change 18663 for review
Message-ID:  <Pine.NEB.3.96L.1021005003608.64999b-100000@fledge.watson.org>
In-Reply-To: <200210041456.g94Eu33e081725@freefall.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help

You probably want to add an XXXMAC in the comment there, since this will
be fixed soon (I hope).

On Fri, 4 Oct 2002, Brian Feldman wrote:

> http://people.freebsd.org/~peter/p4db/chv.cgi?CH=18663
> 
> Change 18663 by green@green_laptop_2 on 2002/10/04 07:55:58
> 
> 	Reject, not crash on, files currently invalid to have extended
> 	attributes on.
> 
> Affected files ...
> 
> .. //depot/projects/trustedbsd/mac/sys/ufs/ffs/ffs_vnops.c#12 edit
> 
> Differences ...
> 
> ==== //depot/projects/trustedbsd/mac/sys/ufs/ffs/ffs_vnops.c#12 (text+ko) ====
> 
> @@ -1402,6 +1402,19 @@
>  	struct ufs2_dinode *dp;
>  	int error;
>  
> +	/*
> +	 * Since these inode types don't contain storage, their vnode
> +	 * operations don't include the strategy() necessary for EA on
> +	 * UFS2 right now.
> +	 */
> +	switch (vp->v_type) {
> +	case VCHR:
> +	case VBLK:
> +	case VFIFO:
> +		return (EFTYPE);
> +	default:
> +		break;
> +	}
>  	ip = VTOI(vp);
>  	fs = ip->i_fs;
>  
> 


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.NEB.3.96L.1021005003608.64999b-100000>