Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Remove $FreeBSD$: two-line .h patternRemove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
Do a sweep and remove most WARNS=6 settingsRepeating the default WARNS here makes it slightly more difficult toexperiment with default WARNS changes, e.g. if we did something absolutelybananas an
Do a sweep and remove most WARNS=6 settingsRepeating the default WARNS here makes it slightly more difficult toexperiment with default WARNS changes, e.g. if we did something absolutelybananas and introduced a WARNS=7 and wanted to try lifting the default tothat.Drop most of them; there is one in the blake2 kernel module, but I suspectit should be dropped -- the default WARNS in the rest of the build doesn'tcurrently apply to kernel modules, and I haven't put too much thought intowhether it makes sense to make it so.
show more ...
Fix warnings and bump WARNS to 6- Garbage collect argc/argv (-Wunused)- sleep(3) will always return an unsigned int; don't check for return codes <0 (-Wsign-compare)MFC after: 1 weekSponsored
Fix warnings and bump WARNS to 6- Garbage collect argc/argv (-Wunused)- sleep(3) will always return an unsigned int; don't check for return codes <0 (-Wsign-compare)MFC after: 1 weekSponsored by: EMC / Isilon Storage Division
NO_MAN= has been deprecated in favor of MAN= for some time, go aheadand finish the job. ncurses is now the only Makefile in the tree thatuses it since it wasn't a simple mechanical change, and will
NO_MAN= has been deprecated in favor of MAN= for some time, go aheadand finish the job. ncurses is now the only Makefile in the tree thatuses it since it wasn't a simple mechanical change, and will beaddressed in a future commit.
Use '%zd' format specifier for ssize_tFound by: clang
Add a regression test to detect if waiting on the I/O serialization lockon socket buffers is interruptible or not, which detacts the regression Iintroduced recently in 7-CURRENT (spotted by alfred)
Add a regression test to detect if waiting on the I/O serialization lockon socket buffers is interruptible or not, which detacts the regression Iintroduced recently in 7-CURRENT (spotted by alfred). This test passesin older -CURRENT, and with the as-yet uncommitted sx_xlock_sig andsblock fix patches.