Page MenuHomeFreeBSD

ls: Make -, apply to -s as well as -l.
ClosedPublic

Authored by des on Jul 22 2024, 8:14 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Nov 3, 12:55 PM
Unknown Object (File)
Oct 8 2024, 5:17 PM
Unknown Object (File)
Oct 3 2024, 12:22 AM
Unknown Object (File)
Oct 2 2024, 10:30 PM
Unknown Object (File)
Sep 30 2024, 11:22 PM
Unknown Object (File)
Sep 27 2024, 7:18 PM
Unknown Object (File)
Sep 20 2024, 10:18 PM
Unknown Object (File)
Sep 17 2024, 2:16 PM
Subscribers

Details

Summary

While here, remove a bogus comment about a gcc bug. The bug was in ls,
which used an incorrect format string, and in libc, which accepted it.

MFC after: 1 week

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

des requested review of this revision.Jul 22 2024, 8:14 PM

Note that, independently of this change, I'm not convinced ls -s reports the right information. It seems to assume that the block size is fixed and universal, while on ZFS it can vary from one file to another. I believe ls should switch to keeping blocksize in bytes and printing howmany(st_blocks * st_blksize, blocksize) instead of keeping blocksize in units of 512 bytes and printing howmany(st_blocks, blocksize).

Ignore this, st_blocks is always in units of 512 bytes, not in units of st_blksize.

This revision is now accepted and ready to land.Jul 24 2024, 7:20 PM
This revision was automatically updated to reflect the committed changes.