From owner-freebsd-current@FreeBSD.ORG Thu Apr 26 14:29:36 2007 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8171A16A400 for ; Thu, 26 Apr 2007 14:29:36 +0000 (UTC) (envelope-from biancalana@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.230]) by mx1.freebsd.org (Postfix) with ESMTP id 400DA13C457 for ; Thu, 26 Apr 2007 14:29:36 +0000 (UTC) (envelope-from biancalana@gmail.com) Received: by wx-out-0506.google.com with SMTP id s18so614566wxc for ; Thu, 26 Apr 2007 07:29:35 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=ZAd1fc8oYZPmS+mLqnTT128rK7sEAvVFBjC3D8Xs9bf9mm6viSz9T99bajhpHXiVnJSEDXiLL+bYIpZ0FnF3mvKICWVVt5gT/NJk0OqS53t3mUXRNvKI8YKy5KzjzeOa7DrsANfO81TlcgH79cjmjNMh79FK/lSMAchZWCZU9Vo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=QOalwYtYrL5ysWz3JJ3BIy/GvNId9dzwfA2B5415Lub4r3EioJJB4El5IdWaruhjM8yP7OQq21W02cJFsrwZgA3d5Yw32KR26GMg3+KEhfShfXq/gEL95W70GNk6eFH9OzxEJnbt7mL5sHUYk0DMXDrEQ4IODH+uc9nPF1d0hAg= Received: by 10.70.52.2 with SMTP id z2mr3711981wxz.1177596093808; Thu, 26 Apr 2007 07:01:33 -0700 (PDT) Received: by 10.70.102.3 with HTTP; Thu, 26 Apr 2007 07:01:33 -0700 (PDT) Message-ID: <8e10486b0704260701w3a6ca86hb833de23849514df@mail.gmail.com> Date: Thu, 26 Apr 2007 11:01:33 -0300 From: "Alexandre Biancalana" To: freebsd-current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: zfs: df and zpool list report different size X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Apr 2007 14:29:36 -0000 Hi list, I update one machine to -CURRENT (yesterday), and now I'm creating zfs filesystem using the following devices: ad9: 305245MB at ata4-slave SATA150 ad11: 305245MB at ata5-slave SATA150 Next I created the pool: # zpool create backup raidz ad9 ad11 # mount /dev/ad8s1a on / (ufs, local) devfs on /dev (devfs, local) backup on /backup (zfs, local) # df -h Filesystem Size Used Avail Capacity Mounted on /dev/ad8s1a 72G 2.2G 64G 3% / devfs 1.0K 1.0K 0B 100% /dev backup 293G 0B 293G 0% /backup # zpool list NAME SIZE USED AVAIL CAP HEALTH ALTROOT backup 596G 222K 596G 0% ONLINE - My doubt is why zpool list and df -h report different size ? Which of then is correct and should I trust ? Any comments ? Thank you, Alexandre