From owner-freebsd-current@FreeBSD.ORG Sun Dec 8 14:51:16 2013 Return-Path: Delivered-To: freebsd-current@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 4EE623D8 for ; Sun, 8 Dec 2013 14:51:16 +0000 (UTC) Received: from mail-vc0-x22a.google.com (mail-vc0-x22a.google.com [IPv6:2607:f8b0:400c:c03::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0EC341892 for ; Sun, 8 Dec 2013 14:51:15 +0000 (UTC) Received: by mail-vc0-f170.google.com with SMTP id ht10so2632390vcb.29 for ; Sun, 08 Dec 2013 06:51:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:from:date:message-id:subject:to:content-type; bh=z669fPjEok2LFWpzZS0QANvV6Fd3jcJFvV1x9NJJXWY=; b=l+GryR0Ty0LHzNzIhWVHgQ5QNGo1OIkTXRwCkNQ2at6NYOClx9Q6rIFr9zc16mlLO1 9U7Qox1R31yX6GR1Z/1IO+kH+TcKnNSAsHaJpf/Z9a6xb+Xtcs59ty6pqNQT2sof0jRP Xiv/C5K/qAod6J0nTV/KkFpDXuuXsPIzBC8BVy249Wn+yEXaMS8ajlx/QmF1dAkz5LZR HXD0UdYFtAtnG2fOpnu7DH324vQkl4y8rOsQ75Ib/pvmOSj6K+EqSFolabonJW3i2xq/ FaIIlLQCjCcf7RzpYzXs36y3SiqIyE/uAXGCN8MEjcxfi1PpTO8Tkw20IU+2ZTHCnzpF yvbA== X-Received: by 10.58.143.17 with SMTP id sa17mr8702387veb.14.1386514275092; Sun, 08 Dec 2013 06:51:15 -0800 (PST) MIME-Version: 1.0 Sender: cochard@gmail.com Received: by 10.58.123.5 with HTTP; Sun, 8 Dec 2013 06:50:55 -0800 (PST) From: =?ISO-8859-1?Q?Olivier_Cochard=2DLabb=E9?= Date: Sun, 8 Dec 2013 15:50:55 +0100 X-Google-Sender-Auth: QrwYaz-UFJkm26o1KNqcS5VrNpY Message-ID: Subject: Regression on -current with mdconfig or dd To: "freebsd-current@freebsd.org" Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.17 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: Sun, 08 Dec 2013 14:51:16 -0000 Hi, I found a regression on current: The problem is meet with dd but I'm not sure it's the root cause. Here is how to reproduce the problem easily with 3 commands: dd if=/dev/zero of=/tmp/SOURCE.img seek=100000 count=0 mdconfig -a -t vnode -f /tmp/SOURCE.img dd conv=sparse if=/dev/md0 of=/tmp/DEST.img bs=64k => This last "dd" works great on 10.0-BETA3 and older but failed on -current (r258675 and r259096) with the message: dd: /dev/md0s1: Input/output error Regards, Olivier