From owner-svn-src-head@FreeBSD.ORG Mon Jun 3 20:02:46 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4ED5DB55; Mon, 3 Jun 2013 20:02:46 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 4201F12F0; Mon, 3 Jun 2013 20:02:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r53K2kbh055670; Mon, 3 Jun 2013 20:02:46 GMT (envelope-from pfg@svn.freebsd.org) Received: (from pfg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r53K2jFd055665; Mon, 3 Jun 2013 20:02:45 GMT (envelope-from pfg@svn.freebsd.org) Message-Id: <201306032002.r53K2jFd055665@svn.freebsd.org> From: "Pedro F. Giffuni" Date: Mon, 3 Jun 2013 20:02:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r251344 - head/sys/fs/ext2fs X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 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: Mon, 03 Jun 2013 20:02:46 -0000 Author: pfg Date: Mon Jun 3 20:02:45 2013 New Revision: 251344 URL: http://svnweb.freebsd.org/changeset/base/251344 Log: ext2fs: Small cosmetic fixes. Make a long macro readable and sort a header. Obtained from: Christoph Mallon MFC after: 3 days Modified: head/sys/fs/ext2fs/ext2_bmap.c head/sys/fs/ext2fs/ext2_dinode.h Modified: head/sys/fs/ext2fs/ext2_bmap.c ============================================================================== --- head/sys/fs/ext2fs/ext2_bmap.c Mon Jun 3 19:51:32 2013 (r251343) +++ head/sys/fs/ext2fs/ext2_bmap.c Mon Jun 3 20:02:45 2013 (r251344) @@ -47,8 +47,8 @@ #include #include -#include #include +#include /* * Bmap converts the logical block number of a file to its physical block Modified: head/sys/fs/ext2fs/ext2_dinode.h ============================================================================== --- head/sys/fs/ext2fs/ext2_dinode.h Mon Jun 3 19:51:32 2013 (r251343) +++ head/sys/fs/ext2fs/ext2_dinode.h Mon Jun 3 20:02:45 2013 (r251344) @@ -77,7 +77,8 @@ #define EXT3_EPOCH_MASK ((1 << EXT3_EPOCH_BITS) - 1) #define EXT3_NSEC_MASK (~0UL << EXT3_EPOCH_BITS) -#define E2DI_HAS_XTIME(ip) (EXT2_HAS_RO_COMPAT_FEATURE(ip->i_e2fs, EXT2F_ROCOMPAT_EXTRA_ISIZE)) +#define E2DI_HAS_XTIME(ip) (EXT2_HAS_RO_COMPAT_FEATURE(ip->i_e2fs, \ + EXT2F_ROCOMPAT_EXTRA_ISIZE)) /* * Structure of an inode on the disk