From owner-freebsd-amd64@FreeBSD.ORG Thu Apr 17 18:50:01 2014 Return-Path: Delivered-To: freebsd-amd64@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5EC5EA09 for ; Thu, 17 Apr 2014 18:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4B20E1503 for ; Thu, 17 Apr 2014 18:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3HIo1K8064875 for ; Thu, 17 Apr 2014 18:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3HIo1am064874; Thu, 17 Apr 2014 18:50:01 GMT (envelope-from gnats) Date: Thu, 17 Apr 2014 18:50:01 GMT Message-Id: <201404171850.s3HIo1am064874@freefall.freebsd.org> To: freebsd-amd64@FreeBSD.org Cc: From: Konstantin Belousov Subject: Re: amd64/188699: Dev tree X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Konstantin Belousov List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Apr 2014 18:50:01 -0000 The following reply was made to PR amd64/188699; it has been noted by GNATS. From: Konstantin Belousov To: John Allman Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: amd64/188699: Dev tree Date: Thu, 17 Apr 2014 21:44:52 +0300 On Wed, Apr 16, 2014 at 05:32:45PM +0000, John Allman wrote: > This is how to reproduce it: > > Fresh install of 10 on AMD 64 > install bash `pkg install bash` > Switch to bash `bash` > push a here document into a loop: `while true ; do echo; done< <(echo "123")` > receive an error: "-su: /dev/fd/62: No such file or directory" > > I'm sorry I haven't been able to research this any further. I found how while working on some important matters. As I mentioned the above works fine in all previous versions of FreeBSD up until 10. > >How-To-Repeat: > Fresh install > pkg install bash > bash > while true; do echo foo done< <(echo "123") > > -su: /dev/fd/62: No such file or directory So do you have fdescfs mounted on /dev/fd on the machine where the test fails ? It works for me on head, and if unmounted, I get the same failure message as yours. I very much doubt that it has anything to do with a system version.