|
> if we need to split any blocks (name entries block or indexing block) while have CW lock, we release CW lock and take EX lock and retry.
sounds like you're going to change APIs between MDT through ldiskfs?
|
|
no, all changes are just inside osd-ldiskfs and ldiskfs
osd-ldiskfs changes are simple:
just replace oo_ext_idx_sem with the new lock and some small changes.
ldiskfs changes are simple as well... just need to change lock mode if necessary.
The only complex thing in the patch is implementation of the lock, it has nothing to do with current ldlm although the idea is from ldlm.
|
|
the patch is here: http://review.whamcloud.com/#change,210
|
|
then it's not clear how MDT knows when to release CW and get EX, how ldiskfs knows when to interrupt split and when do no.
|
|
it's a totally osd/diskfs level lock so MDT doesn't need to know anything, but ldiskfs should know when needs to split/append(we patched it), whenever ldiskfs needs to change the htree, it retry with EX lock.
|
|
For split case, whether we can upgrade from CW lock to EX lock directly without releasing CW lock firstly?
|
|
In the patch, I defined function: parl_change_lock, which means we can atomically release lock and gain lock with new mode if there is no conflict, otherwise it will be blocked.
|
|
some interesting numbers (single node, 4-cores * 2-hyper-threading, ramdisk MDT), 16 mounts & 16 threads opencreate 128K files under shared directory
(fname len) 200 100 40
ldiskfs : 4400 11472 11808
pdirop : 6976 15994 18192
iam-dir : 10496 16816 18128
as we can see, both pdirop patch and iam-dir can help on performance, but pdirop patch can't help too much if filename is extremely long (200 character), it's expected because we always take exclusive lock on directory if we need to split any block.
Regards
Liang
|
|
The site http://www.pdsi-scidac.org/fsstats/ has interesting information about filesystems, including average filename lengths (though the data is getting a bit old by now). It shows that over 99% of most filesystems have filenames are 40 characters or less, and virtually all filenames are 100 characters or less.
That means I'm not terribly worried about the 200-character performance difference. That is doubly true if this test was done on a filesystem with 1024-byte blocksize, which could only have 4 filenames per block before splitting.
|
|
Andreas, these are tests over lustre client, so I'm using 4K blocksize for all cases.
I actually suspect it's not about split, when I set namelen to 190+ pdirop performance is still good (13K+/sec), but if I set namelen to 200+ I saw a big drop of performance (7K/sec) and I don't know why.
IAM-dir doesn't have such an issue.
Liang
|
|
I've made a lot of changes to previous patch:
- of course, rename, parl_lock* are changed to htree_lock*
- after some tests, I found lock-htree-on-split is not good enough for performance because:
- split happens more frequently than I expected
- split takes much longer time than a regular name entry insertion, so we exclusively lock the htree very often.
- the new locking protocol is:
- lock the leaf block (DE block) on inserting/deleting
- lock the last level index block (DX block) on splitting of leaf block (DE block)
- lock the whole tree on splitting of any index block(DX block), the chance of doing this is almost likely less than 0.1%
- I've got really good testing results with this patch
- downside of these improvements:
- patch is bigger
- htree_lock is more complex
- upside of the new patch:
- patch is still clean and easy to maintain, 70% are just new code for implementation of htree_lock
- better performance than previous patch
|
|
change it to 2.1
|
|
Integrated in reviews-centos5 #609
LU-50 pdirops patch for ldiskfs
Liang Zhen : c4ab2660caf219a125a91bb33fb5a48c384f2c36
Files :
- ldiskfs/ldiskfs/autoMakefile.am
- ldiskfs/kernel_patches/patches/ext4_pdirop.patch
- lustre/osd-ldiskfs/osd_handler.c
- ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel5-ext4.series
- lustre/osd-ldiskfs/osd_internal.h
- ldiskfs/ldiskfs/Makefile.in
|
|
I have seen some other tickets implementing this feature. Now that Lustre 2.2 is in the works we can revive this work.
|
|
There need to be some follow-on bugs filed and fixed for this code in order of priority:
- test LARGEDIR and 3-level htree for local ldiskfs in conf-sanity.sh with 1kB blocksize up to 100k entries with 255-byte names (3-level exceeded at 48k entries)
- test LARGEDIR and >2GB directories with Lustre in parallel-scale using 255-byte names and 10M entries (2GB exceeded at 4M entries, 4GB exceeded at 8M entries)
- e2fsprogs support needs to be added for 3-level htree
- e2fsprogs support for directories larger than 2GB
- e2fsprogs test for 3-level htree e2fsck, corruptions
- e2fsprogs add LARGEDIR feature to "tests/f_random_corruption"
- once e2fsprogs is released and available for download, a patch is needed to enable large_dir on new filesystems with mkfs.lustre (probably for 2.3 since I don't think the maximum directory size is a limit for most users today)
- updates to the user manual and release notes to describe how to enable the LARGEDIR feature with tune2fs
- separate the INCOMPAT_LARGEDIR features (>2GB, 3-level htree) patches from the htree-lock patch so that they can be submitted upstream
|
|
Integrated in lustre-master » x86_64,server,el5,ofa #377
LU-50 kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)
Result = SUCCESS
Oleg Drokin : 97497da3c6409988c19089aaa1afbbc212868283
Files :
- build/lbuild-rhel6
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config
- lustre/kernel_patches/series/2.6-rhel6.series
- lustre/kernel_patches/patches/bh_lru_size_config.patch
|
|
Integrated in lustre-master » i686,client,el6,inkernel #377
LU-50 kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)
Result = SUCCESS
Oleg Drokin : 97497da3c6409988c19089aaa1afbbc212868283
Files :
- lustre/kernel_patches/series/2.6-rhel6.series
- lustre/kernel_patches/patches/bh_lru_size_config.patch
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config
- build/lbuild-rhel6
|
|
Integrated in lustre-master » x86_64,client,el5,inkernel #377
LU-50 kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)
Result = SUCCESS
Oleg Drokin : 97497da3c6409988c19089aaa1afbbc212868283
Files :
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config
- build/lbuild-rhel6
- lustre/kernel_patches/series/2.6-rhel6.series
- lustre/kernel_patches/patches/bh_lru_size_config.patch
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config
|
|
Integrated in lustre-master » x86_64,server,el6,inkernel #377
LU-50 kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)
Result = SUCCESS
Oleg Drokin : 97497da3c6409988c19089aaa1afbbc212868283
Files :
- build/lbuild-rhel6
- lustre/kernel_patches/series/2.6-rhel6.series
- lustre/kernel_patches/patches/bh_lru_size_config.patch
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config
|
|
Integrated in lustre-master » x86_64,client,sles11,inkernel #377
LU-50 kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)
Result = SUCCESS
Oleg Drokin : 97497da3c6409988c19089aaa1afbbc212868283
Files :
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config
- lustre/kernel_patches/patches/bh_lru_size_config.patch
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config
- lustre/kernel_patches/series/2.6-rhel6.series
- build/lbuild-rhel6
|
|
Integrated in lustre-master » x86_64,client,el5,ofa #377
LU-50 kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)
Result = SUCCESS
Oleg Drokin : 97497da3c6409988c19089aaa1afbbc212868283
Files :
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config
- build/lbuild-rhel6
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config
- lustre/kernel_patches/patches/bh_lru_size_config.patch
- lustre/kernel_patches/series/2.6-rhel6.series
|
|
Integrated in lustre-master » x86_64,client,el6,inkernel #377
LU-50 kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)
Result = SUCCESS
Oleg Drokin : 97497da3c6409988c19089aaa1afbbc212868283
Files :
- lustre/kernel_patches/series/2.6-rhel6.series
- lustre/kernel_patches/patches/bh_lru_size_config.patch
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config
- build/lbuild-rhel6
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config
|
|
Integrated in lustre-master » x86_64,client,ubuntu1004,inkernel #377
LU-50 kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)
Result = SUCCESS
Oleg Drokin : 97497da3c6409988c19089aaa1afbbc212868283
Files :
- lustre/kernel_patches/patches/bh_lru_size_config.patch
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config
- build/lbuild-rhel6
- lustre/kernel_patches/series/2.6-rhel6.series
|
|
Integrated in lustre-master » x86_64,server,el5,inkernel #377
LU-50 kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)
Result = SUCCESS
Oleg Drokin : 97497da3c6409988c19089aaa1afbbc212868283
Files :
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config
- lustre/kernel_patches/patches/bh_lru_size_config.patch
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config
- build/lbuild-rhel6
- lustre/kernel_patches/series/2.6-rhel6.series
|
|
Integrated in lustre-master » i686,server,el6,inkernel #377
LU-50 kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)
Result = SUCCESS
Oleg Drokin : 97497da3c6409988c19089aaa1afbbc212868283
Files :
- lustre/kernel_patches/series/2.6-rhel6.series
- lustre/kernel_patches/patches/bh_lru_size_config.patch
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config
- build/lbuild-rhel6
|
|
Integrated in lustre-master » i686,client,el5,ofa #377
LU-50 kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)
Result = SUCCESS
Oleg Drokin : 97497da3c6409988c19089aaa1afbbc212868283
Files :
- build/lbuild-rhel6
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config
- lustre/kernel_patches/series/2.6-rhel6.series
- lustre/kernel_patches/patches/bh_lru_size_config.patch
|
|
Integrated in lustre-master » i686,client,el5,inkernel #377
LU-50 kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)
Result = SUCCESS
Oleg Drokin : 97497da3c6409988c19089aaa1afbbc212868283
Files :
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config
- build/lbuild-rhel6
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config
- lustre/kernel_patches/series/2.6-rhel6.series
- lustre/kernel_patches/patches/bh_lru_size_config.patch
|
|
Integrated in lustre-master » i686,server,el5,inkernel #377
LU-50 kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)
Result = SUCCESS
Oleg Drokin : 97497da3c6409988c19089aaa1afbbc212868283
Files :
- lustre/kernel_patches/series/2.6-rhel6.series
- lustre/kernel_patches/patches/bh_lru_size_config.patch
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config
- build/lbuild-rhel6
|
|
Integrated in lustre-master » i686,server,el5,ofa #377
LU-50 kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)
Result = SUCCESS
Oleg Drokin : 97497da3c6409988c19089aaa1afbbc212868283
Files :
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config
- lustre/kernel_patches/series/2.6-rhel6.series
- build/lbuild-rhel6
- lustre/kernel_patches/patches/bh_lru_size_config.patch
- lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config
|
|
Integrated in lustre-master » x86_64,server,el5,ofa #386
LU-50 ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)
Result = FAILURE
Oleg Drokin : 8e858671be59ed53fad2d340cf841b026943cc8a
Files :
- lustre/osd-ldiskfs/osd_internal.h
- lustre/osd-ldiskfs/osd_lproc.c
- ldiskfs/ldiskfs/Makefile.in
- ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch
- lustre/osd-ldiskfs/osd_handler.c
- build/autoconf/lustre-build-ldiskfs.m4
- ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series
- ldiskfs/ldiskfs/autoMakefile.am
- ldiskfs/configure.ac
|
|
Integrated in lustre-master » x86_64,client,el5,ofa #386
LU-50 ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)
Result = SUCCESS
Oleg Drokin : 8e858671be59ed53fad2d340cf841b026943cc8a
Files :
- ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series
- lustre/osd-ldiskfs/osd_lproc.c
- ldiskfs/ldiskfs/Makefile.in
- lustre/osd-ldiskfs/osd_handler.c
- build/autoconf/lustre-build-ldiskfs.m4
- ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch
- ldiskfs/configure.ac
- lustre/osd-ldiskfs/osd_internal.h
- ldiskfs/ldiskfs/autoMakefile.am
|
|
Integrated in lustre-master » x86_64,server,el5,inkernel #386
LU-50 ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)
Result = SUCCESS
Oleg Drokin : 8e858671be59ed53fad2d340cf841b026943cc8a
Files :
- ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series
- ldiskfs/configure.ac
- ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch
- lustre/osd-ldiskfs/osd_lproc.c
- lustre/osd-ldiskfs/osd_internal.h
- lustre/osd-ldiskfs/osd_handler.c
- ldiskfs/ldiskfs/autoMakefile.am
- ldiskfs/ldiskfs/Makefile.in
- build/autoconf/lustre-build-ldiskfs.m4
|
|
Integrated in lustre-master » x86_64,client,sles11,inkernel #386
LU-50 ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)
Result = SUCCESS
Oleg Drokin : 8e858671be59ed53fad2d340cf841b026943cc8a
Files :
- ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch
- ldiskfs/configure.ac
- ldiskfs/ldiskfs/autoMakefile.am
- ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series
- lustre/osd-ldiskfs/osd_handler.c
- lustre/osd-ldiskfs/osd_internal.h
- build/autoconf/lustre-build-ldiskfs.m4
- ldiskfs/ldiskfs/Makefile.in
- lustre/osd-ldiskfs/osd_lproc.c
|
|
Integrated in lustre-master » x86_64,client,ubuntu1004,inkernel #386
LU-50 ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)
Result = SUCCESS
Oleg Drokin : 8e858671be59ed53fad2d340cf841b026943cc8a
Files :
- lustre/osd-ldiskfs/osd_internal.h
- ldiskfs/ldiskfs/autoMakefile.am
- build/autoconf/lustre-build-ldiskfs.m4
- lustre/osd-ldiskfs/osd_handler.c
- lustre/osd-ldiskfs/osd_lproc.c
- ldiskfs/ldiskfs/Makefile.in
- ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series
- ldiskfs/configure.ac
- ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch
|
|
Integrated in lustre-master » x86_64,client,el5,inkernel #386
LU-50 ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)
Result = SUCCESS
Oleg Drokin : 8e858671be59ed53fad2d340cf841b026943cc8a
Files :
- ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch
- ldiskfs/configure.ac
- lustre/osd-ldiskfs/osd_lproc.c
- lustre/osd-ldiskfs/osd_handler.c
- ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series
- build/autoconf/lustre-build-ldiskfs.m4
- ldiskfs/ldiskfs/autoMakefile.am
- lustre/osd-ldiskfs/osd_internal.h
- ldiskfs/ldiskfs/Makefile.in
|
|
Integrated in lustre-master » i686,server,el5,inkernel #386
LU-50 ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)
Result = SUCCESS
Oleg Drokin : 8e858671be59ed53fad2d340cf841b026943cc8a
Files :
- ldiskfs/configure.ac
- build/autoconf/lustre-build-ldiskfs.m4
- ldiskfs/ldiskfs/autoMakefile.am
- ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series
- lustre/osd-ldiskfs/osd_lproc.c
- lustre/osd-ldiskfs/osd_internal.h
- lustre/osd-ldiskfs/osd_handler.c
- ldiskfs/ldiskfs/Makefile.in
- ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch
|
|
Integrated in lustre-master » i686,client,el6,inkernel #386
LU-50 ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)
Result = SUCCESS
Oleg Drokin : 8e858671be59ed53fad2d340cf841b026943cc8a
Files :
- ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch
- ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series
- build/autoconf/lustre-build-ldiskfs.m4
- ldiskfs/ldiskfs/Makefile.in
- lustre/osd-ldiskfs/osd_internal.h
- lustre/osd-ldiskfs/osd_lproc.c
- lustre/osd-ldiskfs/osd_handler.c
- ldiskfs/configure.ac
- ldiskfs/ldiskfs/autoMakefile.am
|
|
Integrated in lustre-master » i686,server,el6,inkernel #386
LU-50 ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)
Result = SUCCESS
Oleg Drokin : 8e858671be59ed53fad2d340cf841b026943cc8a
Files :
- lustre/osd-ldiskfs/osd_internal.h
- ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series
- ldiskfs/ldiskfs/autoMakefile.am
- lustre/osd-ldiskfs/osd_lproc.c
- lustre/osd-ldiskfs/osd_handler.c
- ldiskfs/ldiskfs/Makefile.in
- ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch
- ldiskfs/configure.ac
- build/autoconf/lustre-build-ldiskfs.m4
|
|
Integrated in lustre-master » x86_64,server,el6,inkernel #386
LU-50 ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)
Result = SUCCESS
Oleg Drokin : 8e858671be59ed53fad2d340cf841b026943cc8a
Files :
- ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch
- lustre/osd-ldiskfs/osd_lproc.c
- lustre/osd-ldiskfs/osd_internal.h
- build/autoconf/lustre-build-ldiskfs.m4
- ldiskfs/ldiskfs/Makefile.in
- ldiskfs/ldiskfs/autoMakefile.am
- ldiskfs/configure.ac
- lustre/osd-ldiskfs/osd_handler.c
- ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series
|
|
Integrated in lustre-master » x86_64,client,el6,inkernel #386
LU-50 ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)
Result = SUCCESS
Oleg Drokin : 8e858671be59ed53fad2d340cf841b026943cc8a
Files :
- lustre/osd-ldiskfs/osd_handler.c
- ldiskfs/ldiskfs/autoMakefile.am
- ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series
- build/autoconf/lustre-build-ldiskfs.m4
- lustre/osd-ldiskfs/osd_internal.h
- ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch
- lustre/osd-ldiskfs/osd_lproc.c
- ldiskfs/configure.ac
- ldiskfs/ldiskfs/Makefile.in
|
|
Integrated in lustre-master » i686,server,el5,ofa #386
LU-50 ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)
Result = SUCCESS
Oleg Drokin : 8e858671be59ed53fad2d340cf841b026943cc8a
Files :
- ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch
- ldiskfs/ldiskfs/autoMakefile.am
- ldiskfs/configure.ac
- ldiskfs/ldiskfs/Makefile.in
- lustre/osd-ldiskfs/osd_lproc.c
- lustre/osd-ldiskfs/osd_handler.c
- ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series
- build/autoconf/lustre-build-ldiskfs.m4
- lustre/osd-ldiskfs/osd_internal.h
|
|
Integrated in lustre-master » i686,client,el5,inkernel #386
LU-50 ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)
Result = SUCCESS
Oleg Drokin : 8e858671be59ed53fad2d340cf841b026943cc8a
Files :
- ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch
- lustre/osd-ldiskfs/osd_handler.c
- ldiskfs/ldiskfs/autoMakefile.am
- lustre/osd-ldiskfs/osd_internal.h
- build/autoconf/lustre-build-ldiskfs.m4
- ldiskfs/configure.ac
- ldiskfs/ldiskfs/Makefile.in
- ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series
- lustre/osd-ldiskfs/osd_lproc.c
|
|
Integrated in lustre-master » i686,client,el5,ofa #386
LU-50 ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)
Result = SUCCESS
Oleg Drokin : 8e858671be59ed53fad2d340cf841b026943cc8a
Files :
- ldiskfs/configure.ac
- build/autoconf/lustre-build-ldiskfs.m4
- lustre/osd-ldiskfs/osd_handler.c
- ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch
- ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series
- lustre/osd-ldiskfs/osd_internal.h
- lustre/osd-ldiskfs/osd_lproc.c
- ldiskfs/ldiskfs/autoMakefile.am
- ldiskfs/ldiskfs/Makefile.in
|
|
Fix version should be 2.2, right?
|
|
Liang, did you file the bugs as discussed in my previous comment dated Dec 09/11? Those issues still need to be addressed before the 2.2 release.
|
|
not yet... but I will file bugs for them and cc to you.
|
|
First round testing results
|
|
mdtest patch for mknod and 0-stripe file creation
|
|
Liang, has this patch been submitted upstream to the mdtest authors? It should be.
|
|
Solution architecture of PDO
|
|
Andreas, I would make a few more changes before I send it to the author, thanks
|
|
Can this ticket be closed now?
|
|
we already have another ticket (LU-1365) to track e2fsprogs changes
|
Generated at Sat Feb 10 01:03:13 UTC 2024 using Jira 9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c.