jfs-commit Mailing List for Journaled File System (Page 19)
Brought to you by:
blaschke-oss,
shaggyk
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
(15) |
May
(35) |
Jun
(41) |
Jul
(35) |
Aug
(28) |
Sep
(71) |
Oct
(57) |
Nov
(20) |
Dec
(12) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(18) |
Feb
(8) |
Mar
(17) |
Apr
(4) |
May
(10) |
Jun
(8) |
Jul
(10) |
Aug
(3) |
Sep
(9) |
Oct
(14) |
Nov
(3) |
Dec
(7) |
2004 |
Jan
(10) |
Feb
(1) |
Mar
(11) |
Apr
(13) |
May
(17) |
Jun
(8) |
Jul
(19) |
Aug
(2) |
Sep
(3) |
Oct
|
Nov
(3) |
Dec
(9) |
2005 |
Jan
|
Feb
(8) |
Mar
(19) |
Apr
(5) |
May
(3) |
Jun
(8) |
Jul
|
Aug
|
Sep
(2) |
Oct
(21) |
Nov
(13) |
Dec
|
2006 |
Jan
(6) |
Feb
|
Mar
|
Apr
(1) |
May
(8) |
Jun
(11) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
(2) |
Dec
|
2007 |
Jan
|
Feb
|
Mar
(3) |
Apr
(3) |
May
|
Jun
|
Jul
(2) |
Aug
(5) |
Sep
(4) |
Oct
|
Nov
|
Dec
|
2008 |
Jan
(2) |
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2009 |
Jan
(2) |
Feb
|
Mar
(2) |
Apr
(3) |
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
2010 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-27 17:23:37
|
Update of /usr/cvs/jfs/jfsutils/libfs In directory swg3ws024:/tmp/cvs-serv25967/libfs Modified Files: Makefile.am Log Message: remove fssubs.h from libfs/Makefile.am |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-27 17:04:15
|
Update of /usr/cvs/jfs/jfsutils In directory swg3ws024:/tmp/cvs-serv24334 Modified Files: ChangeLog NEWS README configure.in Log Message: bump version to 1.0.23 |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-27 16:37:24
|
Update of /usr/cvs/jfs/linux24/fs/jfs In directory swg3ws024:/tmp/cvs-serv20861 Modified Files: jfs_dtree.c Log Message: JFS: detect and fix invalid directory index values The directory index values are the unique cookies used to resume a readdir at the proper place. These are stored with each entry in a directory. fsck.jfs does not currently validate these entries, nor even create them when populating the lost+found directory. This patch causes readdir to detect the invalid cookies, and generate new ones, if possible. |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-26 18:22:23
|
Update of /usr/cvs/jfs/jfsutils/fsck In directory swg3ws024:/tmp/cvs-serv17376/fsck Modified Files: fsckbmap.c fsckcbbl.c fsckconn.c fsckdire.c fsckdtre.c fsckea.c fsckimap.c fsckino.c fsckmeta.c fsckmsgs.c fsckpfs.c fsckruns.c fsckwsp.c fsckxtre.c xchkdsk.c Log Message: more code cleanup |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-26 18:22:23
|
Update of /usr/cvs/jfs/jfsutils/mkfs In directory swg3ws024:/tmp/cvs-serv17376/mkfs Modified Files: initmap.c inodemap.c inodes.c mkfs.c Log Message: more code cleanup |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-26 18:22:19
|
Update of /usr/cvs/jfs/jfsutils In directory swg3ws024:/tmp/cvs-serv17376 Modified Files: ChangeLog Log Message: more code cleanup |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-26 00:08:51
|
Update of /usr/cvs/jfs/linux24/fs/jfs In directory swg3ws024:/tmp/cvs-serv32287 Modified Files: jfs_dtree.c jfs_imap.c Log Message: Fix problems with NFS. Don't complain when read_inode is called with a deleted inode. This is normally done by revalidate. readdir: Don't hold metadata page while calling filldir(). NFS's filldir may call lookup() which could result in a hang. |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-26 00:07:38
|
Update of /usr/cvs/jfs/linux24/fs/jfs In directory swg3ws024:/tmp/cvs-serv32239 Modified Files: jfs_dmap.c Log Message: Fix off-by-one error in dbNextAG In certain situations, dbNextAG set db_agpref to db_numag, with is one higher than the last valid value. This will eventually result in a trap. |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-26 00:06:18
|
Update of /usr/cvs/jfs/linux24/fs/jfs In directory swg3ws024:/tmp/cvs-serv32126 Modified Files: file.c inode.c jfs_dmap.c jfs_dmap.h jfs_extent.c jfs_imap.c jfs_incore.h super.c Log Message: Avoid parallel allocations within the same allocation group When large files are writting in parallel, allocating the space for these files within the same allocation group can cause severe fragmentation of the files. By keeping track of open, growing files within an allocation group, we can force other new allocations into a different allocation group to avoid causing fragmentation. |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-25 23:46:46
|
Update of /usr/cvs/jfs/linux24/fs/jfs In directory swg3ws024:/tmp/cvs-serv31687 Modified Files: jfs_logmgr.c Log Message: Fix test in lmLogFileSystem |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-25 22:36:20
|
Update of /usr/cvs/jfs/linux24/fs/jfs In directory swg3ws024:/tmp/cvs-serv29488/fs/jfs Modified Files: jfs_logmgr.c Log Message: Remove assert(i < MAX_ACTIVE) when the external log can't be found |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-24 00:07:52
|
Update of /usr/cvs/jfs/jfsutils/fsck In directory swg3ws025:/tmp/cvs-serv29593/fsck Modified Files: fsckbmap.c fsckcbbl.c fsckconn.c fsckdire.c fsckdtre.c fsckea.c fsckimap.c fsckino.c fsckmeta.c fsckmsgs.c fsckpfs.c fsckruns.c fsckwsp.c fsckxtre.c xchkdsk.c xchkdsk.h xfsck.h xfsckint.h Removed Files: fsckxlog.h Log Message: run through indent, remove typedefs, misc clean up |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-24 00:07:50
|
Update of /usr/cvs/jfs/jfsutils/xpeek In directory swg3ws025:/tmp/cvs-serv29593/xpeek Modified Files: directory.c display.c dmap.c fsckcbbl.c iag.c inode.c xpeek.h Log Message: run through indent, remove typedefs, misc clean up |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-24 00:07:50
|
Update of /usr/cvs/jfs/jfsutils/xchklog In directory swg3ws025:/tmp/cvs-serv29593/xchklog Modified Files: xchklog.c Log Message: run through indent, remove typedefs, misc clean up |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-24 00:07:50
|
Update of /usr/cvs/jfs/jfsutils/xchkdmp In directory swg3ws025:/tmp/cvs-serv29593/xchkdmp Modified Files: xchkdmp.c Log Message: run through indent, remove typedefs, misc clean up |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-24 00:07:50
|
Update of /usr/cvs/jfs/jfsutils/tune In directory swg3ws025:/tmp/cvs-serv29593/tune Modified Files: super.c tune.c Log Message: run through indent, remove typedefs, misc clean up |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-24 00:07:50
|
Update of /usr/cvs/jfs/jfsutils/mkfs In directory swg3ws025:/tmp/cvs-serv29593/mkfs Modified Files: initmap.c inodemap.c inodes.c mkfs.c Log Message: run through indent, remove typedefs, misc clean up |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-24 00:07:49
|
Update of /usr/cvs/jfs/jfsutils/logredo In directory swg3ws025:/tmp/cvs-serv29593/logredo Modified Files: helpers.c Log Message: run through indent, remove typedefs, misc clean up |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-24 00:07:49
|
Update of /usr/cvs/jfs/jfsutils/logdump In directory swg3ws025:/tmp/cvs-serv29593/logdump Modified Files: helpers.c Log Message: run through indent, remove typedefs, misc clean up |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-24 00:07:48
|
Update of /usr/cvs/jfs/jfsutils/libfs In directory swg3ws025:/tmp/cvs-serv29593/libfs Modified Files: debug.h devices.c devices.h diskmap.c diskmap.h fsck_base.h fsckcbbl.h fscklog.h fsckmsgc.h fsckwsp.h inode.c inode.h jfs_endian.c jfs_endian.h libjufs.h log_dump.c log_map.c log_read.c log_work.c logform.c logform.h logredo.c logredo.h message.c message.h open_by_label.c super.c unicode_to_utf8.c unicode_to_utf8.h uniupr.c Log Message: run through indent, remove typedefs, misc clean up |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-24 00:07:47
|
Update of /usr/cvs/jfs/jfsutils/include In directory swg3ws025:/tmp/cvs-serv29593/include Modified Files: jfs_btree.h jfs_dinode.h jfs_dmap.h jfs_dtree.h jfs_imap.h jfs_logmgr.h jfs_types.h jfs_unicode.h jfs_xtree.h Log Message: run through indent, remove typedefs, misc clean up |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-24 00:07:45
|
Update of /usr/cvs/jfs/jfsutils In directory swg3ws025:/tmp/cvs-serv29593 Modified Files: ChangeLog Log Message: run through indent, remove typedefs, misc clean up |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-24 00:07:45
|
Update of /usr/cvs/jfs/jfsutils/defrag In directory swg3ws025:/tmp/cvs-serv29593/defrag Modified Files: defragfs.c helpers.c helpers.h Log Message: run through indent, remove typedefs, misc clean up |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-20 22:47:30
|
Update of /usr/cvs/jfs/linux25/fs/jfs In directory swg3ws025:/tmp/cvs-serv29947 Modified Files: file.c inode.c jfs_logmgr.c Log Message: Sync with 2.5.37 o readv/writev speedup - akpm o clean up argument passing on writeback paths - akpm o new bi_end_io handling - axboe |
From: OSS-jfs_Admin <jfs...@ww...> - 2002-09-13 18:29:57
|
Update of /usr/cvs/jfs/linux24/fs/jfs In directory swg3ws024:/tmp/cvs-serv25429 Modified Files: jfs_btree.h jfs_defragfs.h jfs_dinode.h jfs_dmap.c jfs_dmap.h jfs_dtree.c jfs_dtree.h jfs_extent.c jfs_imap.c jfs_imap.h jfs_incore.h jfs_logmgr.c jfs_logmgr.h jfs_metapage.c jfs_metapage.h jfs_mount.c jfs_txnmgr.c jfs_txnmgr.h jfs_types.h jfs_umount.c jfs_unicode.c jfs_unicode.h jfs_xtree.c jfs_xtree.h namei.c resize.c super.c Log Message: Remove excessive typedefs |