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, bump WARNS to 6, and use a temporary socket instead of one in /tmpMFC 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.
Drop all received data mbufs from a socket's queue if the MT_SONAMEmbuf is dropped, to preserve the invariant in the PR_ADDR case.Add a regression test to detect this condition, but do not hook it
Drop all received data mbufs from a socket's queue if the MT_SONAMEmbuf is dropped, to preserve the invariant in the PR_ADDR case.Add a regression test to detect this condition, but do not hook itup to the build for now.PR: kern/38495Submitted by: James JuranReviewed by: sam, rwatsonObtained from: NetBSDMFC after: 2 weeks