From owner-svn-src-head@freebsd.org Fri May 27 22:42:26 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D1812B4D91A; Fri, 27 May 2016 22:42:26 +0000 (UTC) (envelope-from rpokala@mac.com) Received: from mr11p00im-asmtp004.me.com (mr11p00im-asmtp004.me.com [17.110.69.135]) (using TLSv1.2 with cipher DHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B3DD61FED; Fri, 27 May 2016 22:42:26 +0000 (UTC) (envelope-from rpokala@mac.com) Received: from process-dkim-sign-daemon.mr11p00im-asmtp004.me.com by mr11p00im-asmtp004.me.com (Oracle Communications Messaging Server 7.0.5.36.0 64bit (built Sep 8 2015)) id <0O7U00H00XF6FX00@mr11p00im-asmtp004.me.com>; Fri, 27 May 2016 22:42:26 +0000 (GMT) Received: from [172.17.133.77] (dip-cali.panasas.com [64.80.217.3]) by mr11p00im-asmtp004.me.com (Oracle Communications Messaging Server 7.0.5.36.0 64bit (built Sep 8 2015)) with ESMTPSA id <0O7U001HEXQORN30@mr11p00im-asmtp004.me.com>; Fri, 27 May 2016 22:42:25 +0000 (GMT) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2016-05-27_14:,, signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 clxscore=1015 suspectscore=0 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1510270003 definitions=main-1605270256 User-Agent: Microsoft-MacOutlook/f.16.0.160506 Date: Fri, 27 May 2016 15:42:48 -0700 Subject: Re: svn commit: r300880 - in head: . sys/cam/scsi From: Ravi Pokala Sender: "Pokala, Ravi" To: Alan Somers , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Message-id: <10C4BDB3-3BBD-4354-8CE7-70F7305DFAE4@panasas.com> Thread-topic: svn commit: r300880 - in head: . sys/cam/scsi References: <201605272226.u4RMQhRV084033@repo.freebsd.org> In-reply-to: <201605272226.u4RMQhRV084033@repo.freebsd.org> MIME-version: 1.0 Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 7bit DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mac.com; s=4d515a; t=1464388946; bh=b/NNb5NaNrfzdzWnN6LOZ9fKLMch1zSDuWzqXR8FspQ=; h=Date:Subject:From:To:Message-id:MIME-version:Content-type; b=VNogwPKm8bq35onUJ6F8jTnh3ajgEbPZd36A+2TJXYYAoryO9TolHwTHiWUeR1HqD Hwyswav52Moa8e9qfqeQqKZ+udHcYQbHCteC8OjXNqKSmeIklnhgPzWeJeSYPA1kk1 aM0l5jzoDpDdOI8p1T7jazDClMdYWeq4ZIHRvgRWfEzPE10948woCItiuW5Ejzl5mH QxV0QIb1kMk3q+k5zLQDHAeQ+KmhOf2aCtqBruS4Ao6Zz+P2Br6l0BHeQjTMqM39OI DnbpVEAti6Bter/fNbnANHjMupdF80IQAvML2P3CHBSlCCL0SQ1oGZqiXQQpUbH0uo yEsqNBw5ElYnw== X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 May 2016 22:42:26 -0000 -----Original Message----- From: on behalf of Alan Somers Date: 2016-05-27, Friday at 15:26 To: , , Subject: svn commit: r300880 - in head: . sys/cam/scsi >Author: asomers >Date: Fri May 27 22:26:43 2016 >New Revision: 300880 >URL: https://svnweb.freebsd.org/changeset/base/300880 > >Log: > Strip leading spaces off of a SCSI disk's serial number > >Modified: head/UPDATING >============================================================================== >--- head/UPDATING Fri May 27 22:16:46 2016 (r300879) >+++ head/UPDATING Fri May 27 22:26:43 2016 (r300880) >@@ -31,6 +31,16 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 11 > disable the most expensive debugging functionality run > "ln -s 'abort:false,junk:false' /etc/malloc.conf".) > >+20160527: >+ CAM will now strip leading spaces from SCSI disks' serial numbers. >+ This will effect users who create UFS filesystems on SCSI disks using >+ those disk's diskid device nodes. For example, if /etc/fstab >+ previously contained a line like >+ "/dev/diskid/DISK-%20%20%20%20%20%20%20ABCDEFG0123456", you should >+ change it to "/dev/diskid/DISK-ABCDEFG0123456". Users of geom >+ transfers like gmirror may also be affected. ZFS users should >+ generally be fine. "geom transforms" -Ravi (rpokala@)