From owner-freebsd-fs@FreeBSD.ORG Wed Nov 7 09:16:15 2012 Return-Path: Delivered-To: freebsd-fs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8CFF1EAD for ; Wed, 7 Nov 2012 09:16:15 +0000 (UTC) (envelope-from petri@helenius.fi) Received: from mail.secroom.net (r083.secroom.net [193.19.137.83]) by mx1.freebsd.org (Postfix) with ESMTP id 3D2548FC0A for ; Wed, 7 Nov 2012 09:16:14 +0000 (UTC) Received: from mail.secroom.net (localhost [127.0.0.1]) by mail.secroom.net (Postfix) with ESMTP id 92C675C95 for ; Wed, 7 Nov 2012 09:16:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at example.com Received: from mail.secroom.net ([127.0.0.1]) by mail.secroom.net (mail.secroom.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6ygg-sUYbpEw for ; Wed, 7 Nov 2012 09:16:10 +0000 (UTC) Received: from d149.dyn.helenius.fi (d149.dyn.helenius.fi [83.150.121.149]) (Authenticated sender: pete) by mail.secroom.net (Postfix) with ESMTPA id 04C495C23 for ; Wed, 7 Nov 2012 09:16:10 +0000 (UTC) From: Petri Helenius Subject: zvol node bug Message-Id: Date: Wed, 7 Nov 2012 11:16:10 +0200 To: "freebsd-fs@freebsd.org" Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) X-Mailer: Apple Mail (2.1499) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Nov 2012 09:16:15 -0000 Hi, Any chance https://www.illumos.org/issues/3170 would be fixed in RELENG_9? Pete From owner-freebsd-fs@FreeBSD.ORG Wed Nov 7 10:52:02 2012 Return-Path: Delivered-To: freebsd-fs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 67DBE5FB for ; Wed, 7 Nov 2012 10:52:02 +0000 (UTC) (envelope-from mickael.canevet@gmail.com) Received: from mail-ia0-f182.google.com (mail-ia0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id 2B5308FC08 for ; Wed, 7 Nov 2012 10:52:01 +0000 (UTC) Received: by mail-ia0-f182.google.com with SMTP id k10so1315410iag.13 for ; Wed, 07 Nov 2012 02:52:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=lBx9urRET6zB0750iW1BMciZex5LxqhC7+ESzFe2CW4=; b=KWRPBk38dwT1QZBYt7Wo5yx1LbsshmNQ+6mO3nI2t+7qPBdbfCYly7MSw7WyG0Z8HL Ziw/k6rqF79idr9MtpluXrS1jgMWzX9g48+88YVvtutZN9J0n1aIHR586IBioTOEPJrO +vyMwHHaQeIRwmEYoZQltaZmHMJSkfUxiqAiTvr/VcsCUYqDi81P8VOzVQWoSZqViMfH 7oK23T4Cn2CB4KYuxA83YHUqv9Deqvpz3wI/5QYlptFvvC6OrN2zZ4XFgNr+LrpAOs1s l/QhbqmnMKj282EPOux1hCkJL5LAsoRvLAWn4pAarwd6Oru5D3pYBrKxpnm26HgAD438 gv/A== MIME-Version: 1.0 Received: by 10.50.237.6 with SMTP id uy6mr1566588igc.31.1352285521480; Wed, 07 Nov 2012 02:52:01 -0800 (PST) Received: by 10.64.28.172 with HTTP; Wed, 7 Nov 2012 02:52:01 -0800 (PST) Date: Wed, 7 Nov 2012 11:52:01 +0100 Message-ID: Subject: NFS export with space in directory name From: =?UTF-8?B?TWlja2HDq2wgQ2Fuw6l2ZXQ=?= To: freebsd-fs@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Nov 2012 10:52:02 -0000 Hello, I'm trying to export a ZFS volume that contains a space (which is allowed according to /usr/src/sys/cddl/contrib/opensolaris/common/zfs/zfs_namecheck.c, function valid_char() ), but I noticed that it was not exported (showmount -e). /etc/zfs/export creates an entry like this: /data/my directory with space -network 192.168.0.0/24 I tried to do it manually by escaping space character in /etc/exports: /data/my\ directory\ with\ space -network 192.168.0.0/24 or "/data/my directory with space" -network 192.168.0.0/24 (works on Debian) or '/data/my directory with space' -network 192.168.0.0/24 But it does not work ; /var/log/messages always reports "mountd: bad exports list line..." So I'd like to know if there is a way to export a directory with a space in its name on FreeBSD 9.0-RELEASE ? Thank you, Micka=C3=ABl