o extattrctl initattr, when pre-allocating store for extended attributes,

computed a a chunksize that didn't include the extended attribute
  header.  This was a non-fatal error, in that it was just writing out
  zeros anyway, but did have the effect of not pre-allocating the
  right amount of disk space.  This fix calculates chunksize to include
  the attribute header.

Submitted by:	Dale Rahn
Sponsored by:	DARPA, UPenn POSSE Project
Obtained from:	OpenBSD
This commit is contained in:
Robert Watson 2001-11-15 22:50:06 +00:00
parent 21a7a9aeb6
commit 8970738b86
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=86428

View File

@ -122,16 +122,16 @@ initattr(int argc, char *argv[])
if (write(i, &uef, sizeof(uef)) == -1)
error = -1;
else if (fs_path) {
zero_buf = (char *) (malloc(uef.uef_size));
chunksize = sizeof(struct ufs_extattr_header) +
uef.uef_size;
zero_buf = (char *) (malloc(chunksize));
if (zero_buf == NULL) {
perror("malloc");
unlink(argv[1]);
return (-1);
}
memset(zero_buf, 0, uef.uef_size);
memset(zero_buf, 0, chunksize);
num_inodes = num_inodes_by_path(fs_path);
chunksize = sizeof(struct ufs_extattr_header) +
uef.uef_size;
for (loop = 0; loop < num_inodes; loop++) {
error = write(i, zero_buf, chunksize);
if (error != chunksize) {