Re: [RFC][PATCH 0/8] 64bit inode e2fsprogs support

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> On Oct 27, 2017, at 11:22 AM, Artem Blagodarenko <artem.blagodarenko@xxxxxxxxx> wrote:
> 
> Andreas Dilger (2):
>  e2fsck: add support for dirdata feature
>  tests: add basic tests for dirdata feature
> 
> Artem Blagodarenko (5):
>  e2fsck Fix access after free for dx_db structure
>  LU-9309 debugfs: 64bit inode support
>  LU-9309 ext2fs: add EXT4_FEATURE_INCOMPAT_64INODE suport
>  LU-9309 quota: swaping s_prj_quota_inum superblock field
>  LU-9309 quota: quota 64bit inode number cleanup
> 
> Bobi Jam (1):
>  LU-1774 tests: e2fsck -D does not change dirdata

We probably don't want to keep the LU ticket number in the patch
description.  What we've been doing for Lustre patches going into
the upstream kernel is to add a tag:

Lustre-bug: https://jira.hpdd.intel.com/browse/LU-9309

so that this information is maintained in a more useful way.

Cheers, Andreas

> 
> debugfs/debugfs.c                 |   2 +-
> debugfs/htree.c                   |   2 +-
> debugfs/ls.c                      |  47 +++-
> debugfs/set_fields.c              |   4 +
> debugfs/util.c                    |   4 +-
> e2fsck/e2fsck.c                   |   4 +-
> e2fsck/e2fsck.h                   |   4 +-
> e2fsck/extents.c                  |   8 +-
> e2fsck/journal.c                  |   2 +-
> e2fsck/pass1.c                    |  29 +--
> e2fsck/pass1b.c                   |   2 +-
> e2fsck/pass2.c                    | 144 ++++++++---
> e2fsck/pass3.c                    |   8 +
> e2fsck/pass4.c                    |   2 +-
> e2fsck/pass5.c                    |  20 +-
> e2fsck/problem.c                  |   5 +
> e2fsck/problem.h                  |   3 +
> e2fsck/quota.c                    |  10 +-
> e2fsck/rehash.c                   |  96 ++++---
> e2fsck/super.c                    |  17 +-
> e2fsck/unix.c                     |  17 +-
> ext2ed/inode_com.c                |   2 +-
> ext2ed/super_com.c                |   6 +-
> lib/e2p/feature.c                 |   2 +
> lib/e2p/ls.c                      |   8 +-
> lib/ext2fs/alloc.c                |   8 +-
> lib/ext2fs/alloc_stats.c          |   5 +-
> lib/ext2fs/badblocks.c            |  92 +++----
> lib/ext2fs/bb_compat.c            |   6 +-
> lib/ext2fs/bb_inode.c             |  14 +-
> lib/ext2fs/bitmaps.c              |   2 +-
> lib/ext2fs/dirblock.c             |  34 +++
> lib/ext2fs/ext2_fs.h              |  27 +-
> lib/ext2fs/ext2fs.h               | 116 +++++++--
> lib/ext2fs/ext2fsP.h              |   8 +-
> lib/ext2fs/extent.c               |   2 +-
> lib/ext2fs/freefs.c               |   4 +-
> lib/ext2fs/gen_bitmap64.c         |   2 +-
> lib/ext2fs/get_num_dirs.c         |   4 +-
> lib/ext2fs/icount.c               |   7 +-
> lib/ext2fs/initialize.c           |  17 +-
> lib/ext2fs/inline_data.c          |  16 +-
> lib/ext2fs/inode.c                |   8 +-
> lib/ext2fs/lfsck.h                |  40 +++
> lib/ext2fs/link.c                 |  10 +-
> lib/ext2fs/newdir.c               |   4 +-
> lib/ext2fs/openfs.c               |   4 +-
> lib/ext2fs/rw_bitmaps.c           |   2 +-
> lib/ext2fs/swapfs.c               |   6 +
> lib/ext2fs/tst_bitmaps.c          |   7 +-
> lib/ext2fs/tst_iscan.c            |   2 +-
> lib/ext2fs/tst_super_size.c       |   5 +
> lib/ext2fs/write_bb_file.c        |   2 +-
> lib/support/mkquota.c             |  10 +-
> lib/support/quotaio.c             |   2 +-
> lib/support/quotaio.h             |  47 +++-
> misc/badblocks.c                  |  34 +--
> misc/dumpe2fs.c                   |   2 +-
> misc/findsuper.c                  |   6 +-
> misc/fuse2fs.c                    |   6 +-
> misc/mke2fs.c                     |  28 ++-
> misc/tune2fs.c                    |  15 +-
> resize/main.c                     |   3 +-
> resize/resize2fs.c                |  27 +-
> tests/f_dir_optimize/expect.1     | 511 ++++++++++++++++++++++++++++++++++++++
> tests/f_dir_optimize/expect.2     | 511 ++++++++++++++++++++++++++++++++++++++
> tests/f_dir_optimize/image.gz     | Bin 0 -> 102520 bytes
> tests/f_dir_optimize/name         |   1 +
> tests/f_dir_optimize/script       |  36 +++
> tests/f_dirdata/expect.1          |  15 ++
> tests/f_dirdata/expect.2          |   7 +
> tests/f_dirdata/image.gz          | Bin 0 -> 72169 bytes
> tests/f_dirdata/name              |   1 +
> tests/f_dirdata_optimize/expect.1 |  10 +
> tests/f_dirdata_optimize/expect.2 |   7 +
> tests/f_dirdata_optimize/image.gz | Bin 0 -> 32121 bytes
> tests/f_dirdata_optimize/name     |   1 +
> tests/f_dirdata_optimize/script   |   3 +
> tests/progs/test_icount.c         |   4 +-
> 79 files changed, 1837 insertions(+), 352 deletions(-)
> create mode 100644 lib/ext2fs/lfsck.h
> create mode 100644 tests/f_dir_optimize/expect.1
> create mode 100644 tests/f_dir_optimize/expect.2
> create mode 100644 tests/f_dir_optimize/image.gz
> create mode 100644 tests/f_dir_optimize/name
> create mode 100644 tests/f_dir_optimize/script
> create mode 100644 tests/f_dirdata/expect.1
> create mode 100644 tests/f_dirdata/expect.2
> create mode 100644 tests/f_dirdata/image.gz
> create mode 100644 tests/f_dirdata/name
> create mode 100644 tests/f_dirdata_optimize/expect.1
> create mode 100644 tests/f_dirdata_optimize/expect.2
> create mode 100644 tests/f_dirdata_optimize/image.gz
> create mode 100644 tests/f_dirdata_optimize/name
> create mode 100644 tests/f_dirdata_optimize/script
> 
> --
> 2.13.5 (Apple Git-94)
> 


Cheers, Andreas





Attachment: signature.asc
Description: Message signed with OpenPGP


[Index of Archives]     [Reiser Filesystem Development]     [Ceph FS]     [Kernel Newbies]     [Security]     [Netfilter]     [Bugtraq]     [Linux FS]     [Yosemite National Park]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Samba]     [Device Mapper]     [Linux Media]

  Powered by Linux