Whamcloud - gitweb
ChangeLog, Makefile.in:
[tools/e2fsprogs.git] / resize / ChangeLog
1 1999-11-19    <tytso@valinux.com>
2
3         * Makefile.in (distclean): Remove TAGS and Makefile.in.old from
4                 the source directory.
5
6 1999-11-10    <tytso@valinux.com>
7
8         * Release of E2fsprogs 1.18
9
10 1999-10-26    <tytso@valinux.com>
11
12         * Release of E2fsprogs 1.17
13
14 1999-10-22    <tytso@valinux.com>
15
16         * Release of E2fsprogs 1.16
17
18 1999-07-18  Theodore Ts'o  <tytso@rsts-11.mit.edu>
19
20         * Release of E2fsprogs 1.15
21
22 1999-01-09  Theodore Ts'o  <tytso@rsts-11.mit.edu>
23
24         * Release of E2fsprogs 1.14
25
26 1998-12-15  Theodore Ts'o  <tytso@rsts-11.mit.edu>
27
28         * Release of E2fsprogs 1.13
29
30 1998-12-03  Theodore Ts'o  <tytso@rsts-11.mit.edu>
31
32         * Makefile.in: Updated dependencies.
33
34 1998-09-29  Theodore Ts'o  <tytso@rsts-11.mit.edu>
35
36         * main.c (main): Print a feedback message stating the new size of
37                 the filesystem when we're through.
38
39 1998-09-02  Theodore Ts'o  <tytso@rsts-11.mit.edu>
40
41         * resize2fs.c: Rename max to max_groups and max_dirs to avoid
42                 possible conflicts with a cpp macro named "max".
43
44 1998-07-26  Theodore Ts'o  <tytso@rsts-11.mit.edu>
45
46         * resize2fs.h: Protect include of unistd.h with HAVE_UNISTD_H.
47
48 1998-07-09  Theodore Ts'o  <tytso@rsts-11.mit.edu>
49
50         * Release of E2fsprogs 1.12
51
52 1998-06-10  Theodore Ts'o  <tytso@rsts-11.mit.edu>
53
54         * resize2fs.c (process_block): Change blkcnt_t to be e2_blkcnt_t
55                 to avoid collision with LFS API.
56
57 1998-04-28  Theodore Ts'o  <tytso@rsts-11.mit.edu>
58
59         * extent.c (ext2fs_create_extent_table): Use ext2fs_free_mem
60                 instead of free().
61           (extent_cmp): Use EXT2_QSORT_TYPE to define the appropriate
62                 return type for comparison functions for qsort.
63
64 1998-04-26  Theodore Ts'o  <tytso@rsts-11.mit.edu>
65
66         * resize2fs.c (adjust_superblock): 
67         * extent.c (ext2fs_add_extent_entry): Update functions to
68                   pass the old size of the memory to be resized to
69                   ext2fs_resize_mem(). 
70
71 1998-03-30  Theodore Ts'o  <tytso@rsts-11.mit.edu>
72
73         * Makefile.in: Change to use new installation directory variables
74                 convention.  Fix uninstall rules to take $(DESTDIR) into
75                 account.  Remove cat8dir from the installdirs target,
76                 since modern man package don't necessarily put the cat
77                 directory in /usr/man/cat?.
78
79 1998-03-29  Theodore Ts'o  <tytso@rsts-11.mit.edu>
80
81         * extent.c (extent_cmp): Add const to cast to prevent -Wall warning.
82
83         * main.c (check_mount): Rename function argument to prevent -Wall
84                 warning. 
85
86 1998-03-24  Theodore Ts'o  <tytso@rsts-11.mit.edu>
87
88         * main.c (main): Check to make sure we can really resize this
89                 filesystem.  If there are compatible feature sets that we
90                 don't support, we need to abort.
91
92         * resize2fs.c: Change to use the new prototype required by
93                 block_iterate2 (which uses blkcnt_t for the blockcount).
94
95 1998-03-20  Theodore Ts'o  <tytso@rsts-11.mit.edu>
96
97         * resize2fs.c (inode_scan_and_fix): If we are expanding the
98                 filesystem, temporarily set
99                 rfs->old_fs->super->s_blocks_count to ultimate size of the
100                 filesystem, to avoid catching an error on the block
101                 iterator.
102
103 Mon Mar  9 12:02:47 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
104
105         * main.c: Use a local version.h file.
106
107 Sat Mar  7 18:18:04 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
108
109         * Makefile.in: Change the name of the complete source file that we
110                 built (that includes resize2fs) to be
111                 e2fsprogs-ALL-<version>.tar.gz.  Don't link with libuuid,
112                 since it's not needed.
113
114         * main.c (main): Add copyright notice.
115
116         * resize2fs.c (blocks_to_move): Create the meta_bmap using the old
117                 filesystem, not the new filesystem.  
118                 (get_new_block): Don't try checking the old block bitmap
119                 if the block we're testing is beyond the boundaries of the
120                 old filesystem.
121
122 Fri Feb 27 01:02:50 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
123
124         * Makefile.in: Add rule to build a static version of resize2fs.
125                 Update dependency rules.
126
127         * main.c: #include ../version.h, instead of using a hard-coded
128                 version string.
129
130 Tue Feb 24 15:22:52 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
131
132         * Change the progress function to return an errcode_t; this allows
133                 the progress function to return a error indicating a
134                 user-requested cancel.
135
136 1998-02-20  Theodore Y. Ts'o  <tytso@edt.mit.edu>
137
138         * main.c (check_mount, main): Resize2fs now checks the size of the
139                 partition, and uses this as a default new_size of the
140                 partition if one is not specified.  Resize2fs will not let
141                 you resize a mounted partition.
142
143         * resize2fs.c: Change how the progress function for the INODE_SCAN
144                 pass is performed, so that the maximum size is never zero.
145
146         * resize2fs.8.in: Updated man page.
147         
148 Mon Feb 16 17:13:01 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
149
150         * resize2fs.c, resize2fs.h, main.c, ext2_block_move.c,
151                 ext2_inode_move.c: Major reoganization of how resizing
152                 works.  Functions in ext2_block_move.c, and
153                 ext2_inode_move.c moved into resize2fs.c.  Multiple passes
154                 in those two files also combined into a single inode
155                 scanning pass.  Made the inode table moving function
156                 better handling the case where it needs to abort
157                 mid-operation.  When moving blocks around, made the block
158                 allocation function preferentially avoid the old group
159                 descriptor blocks, to make resize2fs more robust.
160
161 Fri Feb 13 17:15:43 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
162
163         * resize2fs.c, resize2fs.h, ext2_block_move.c, ext2_inode_move.c,
164                 main.c: Reorganize how the progress functions are called.
165
166 Mon Jan 19 09:12:28 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
167
168         * resize2fs.h: If EXT2_FLAT_INCLUDES is defined, then assume all
169                 of the ext2-specific header files are in a flat directory.
170
171         * ext2_block_move.c, ext2_inode_move.c, extent.c, resize2fs.c,
172                 resize2fs.h: Rename variables named "new" to "new_block",
173                 "new_inode", or "new_loc" to avoid C++ reserved word
174                 clash.
175         
176         * ext2_block_move.c, ext2_inode_move.c, extent.c, resize2fs.c,
177                 sim_progress.c: Use ext2fs_get_memory(),
178                 ext2fs_free_memory(), et. al., instead of malloc() and
179                 free().
180         
181         * ext2_block_move.c, ext2_inode_move.c, extent.c: Explicitly cast
182                 all assignments from void * to be compatible with C++.
183         
184 Mon Dec 29 19:09:45 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
185
186         * banalysis.c, banalysis.h, ext2_inode_move.c, ext2_block_move.c:
187                 Change private to priv_data to avoid C++ namespace clash.
188
189 Mon Nov  3 14:45:06 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
190
191         * resize2fs.h: Remove STDC magic, since everyone is STDC these days.
192
193         * resize2fs.c, ext2_block_move.c ext2_inode_move.c: Only include
194                 printf statements if RESIZE2FS_DEBUG is defined.
195
196         * main.c: Don't read in the bitmaps since resize2fs.c does that.
197
198 Sun Oct 19 20:40:42 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
199
200         * resize2fs.h: Add #ifdef's for HAVE_SYS_TYPES_H and HAVE_SYS_TIME_H.
201
202 Wed Sep  3 17:31:49 1997  Theodore Y. Ts'o  <tytso@edt.mit.edu>
203
204         * resize2fs.h: Add #include for errno.h
205
206 Tue Jun 17 01:33:20 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
207
208         * Release of E2fsprogs 1.11
209