Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 May 2013 15:44:50 +0000 (UTC)
From:      Jilles Tjoelker <jilles@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r250567 - head/sys/fs/fdescfs
Message-ID:  <201305121544.r4CFioFG062698@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jilles
Date: Sun May 12 15:44:49 2013
New Revision: 250567
URL: http://svnweb.freebsd.org/changeset/base/250567

Log:
  fdescfs: Supply a real value for d_type in readdir.
  
  All the fdescfs nodes (except . and ..) appear as character devices to
  stat(), so DT_CHR is correct.

Modified:
  head/sys/fs/fdescfs/fdesc_vnops.c

Modified: head/sys/fs/fdescfs/fdesc_vnops.c
==============================================================================
--- head/sys/fs/fdescfs/fdesc_vnops.c	Sun May 12 15:29:35 2013	(r250566)
+++ head/sys/fs/fdescfs/fdesc_vnops.c	Sun May 12 15:44:49 2013	(r250567)
@@ -538,7 +538,7 @@ fdesc_readdir(ap)
 				break;
 			dp->d_namlen = sprintf(dp->d_name, "%d", fcnt);
 			dp->d_reclen = UIO_MX;
-			dp->d_type = DT_UNKNOWN;
+			dp->d_type = DT_CHR;
 			dp->d_fileno = i + FD_DESC;
 			break;
 		}



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