dim
04297626e5
In usr.bin/netstat/atalk.c, work around a clang false positive with
...
printf format warnings and conditional operators.
MFC after: 1 week
2011-12-17 17:21:47 +00:00
dim
aececc3033
Use NO_WCAST_ALIGN for usr.bin/ncplist, as there are many potential
...
alignment issues in it. (Though I doubt anyone still cares about
NetWare support...)
MFC after: 1 week
2011-12-17 17:04:30 +00:00
trociny
fe0982e586
On start most of sysctl_kern_proc functions use the same pattern:
...
locate a process calling pfind() and do some additional checks like
p_candebug(). To reduce this code duplication a new function pget() is
introduced and used.
As the function may be useful not only in kern_proc.c it is in the
kernel name space.
Suggested by: kib
Reviewed by: kib
MFC after: 2 weeks
2011-12-17 16:59:22 +00:00
dim
3aeee4ad81
In usr.bin/mail/cmd1.c, use the correct printf length modifier for a
...
ptrdiff_t. In usr.bin/mail/main.c, cast a field width to int.
MFC after: 1 week
2011-12-17 16:30:42 +00:00
nwhitehorn
f8b4a766de
Additional icache paranoia: non-PLT relocations can modify the text segment.
...
It is then important to make sure the icache is synchronized again to
prevent (rare) random seg faults and illegal instructions.
MFC after: 3 days
2011-12-17 16:20:27 +00:00
dim
270e7ed83a
In contrib/less, cast away const a bunch of times, to make it build
...
without conversion warnings. This code desparately needs a good dose of
const poison, but fixing all the issues would be rather disruptive.
MFC after: 1 week
2011-12-17 16:10:14 +00:00
avg
fbf65ae4d9
syscons: provide a first iteration of cngrab/cnungrab implementation
...
- put underlying keyboard(s) into the polling mode for the whole
duration of the grab, instead of the previous behavior of going into
and out of the polling mode around each polling attempt
- ditto for setting K_XLATE mode and enabling a disabled keyboard
Inspired by: bde
MFC after: 2 months
2011-12-17 15:57:39 +00:00
avg
34b585c853
belatedly transfer copyrights from libkern/gets.c to kern_cons.c
...
MFC after: 2 months
MFC with: r228642
2011-12-17 15:50:45 +00:00
avg
c46d7f1b35
retire libkern gets
...
Inspired by: bde
MFC after: 2 months
X-MFC-Note: if deemed a part of KPI, just call cngets internally
2011-12-17 15:48:55 +00:00
bz
0c11261ccf
Allow toggling of IFCAP_VLAN_HWCSUM for hardware that supports checksum
...
offloading on vlans and document the new option.
MFC after: 2 weeks
Sponsored by: The FreeBSD Foundation
2011-12-17 15:44:34 +00:00
bz
64d507853c
Unbreak the OCTEON1 kernel build after r228483 removing the left over
...
declaration.
MFC after: 11 days
2011-12-17 15:42:37 +00:00
dim
f2b4c8af68
In usr.bin/indent/io.c, fix a few warnings about format strings not being literals.
...
MFC after: 1 week
2011-12-17 15:41:58 +00:00
avg
d28023bd09
move GETS_*ECHO* defintions from libkern.h to cons.h
...
MFC after: 2 months
2011-12-17 15:39:14 +00:00
kevlo
f9b67c20b3
Another axe(4), found in ASUS zenbook.
2011-12-17 15:38:16 +00:00
dim
a382ad1946
Correct a logic error in usr.bin/hexdump/conv.c, found by clang.
...
Whenever the conv_c() function encounters an incomplete multibyte char,
it peeks ahead. It also sets p to peekbuf, to indicate it is still
processing the incomplete character.
However, on the next retry, it compares buf against peekbuf, which
always returns false, since both buf and peekbuf are local char arrays,
whose addresses are never the same.
Fix this by comparing against p instead, which was the intention. Also
turn peekbuf into an array of u_char, to prevent conversion warnings.
MFC after: 1 week
2011-12-17 15:33:26 +00:00
nwhitehorn
b4df21bd9d
Fix RTLD on PowerPC after r228435. Changing the order of init_pltgot()
...
caused the icache to be invalidated at the wrong time, resulting in
an icache full of nonsense in the PLT section.
2011-12-17 15:31:00 +00:00
avg
abb1713421
replace uses of libkern gets with cngets
...
MFC after: 2 months
2011-12-17 15:26:34 +00:00
avg
53f09b7daf
introduce cngets, a method for kernel to read a string from console
...
This is intended as a replacement for libkern's gets and mostly borrows
its implementation. It uses cngrab/cnungrab to delimit kernel's access
to console input.
Note: libkern's gets obviously doesn't share any bits of implementation
iwth libc's gets. They also have different APIs and the former doesn't
have the overflow problems of the latter.
Inspired by: bde
MFC after: 2 months
2011-12-17 15:16:54 +00:00
avg
d062f5e7d8
introduce cngrab/cnungrab stub calls in some places where they make sense
...
MFC after: 2 months
2011-12-17 15:11:22 +00:00
avg
f6def40e18
kern cons: introduce infrastructure for console grabbing by kernel
...
At the moment grab and ungrab methods of all console drivers are no-ops.
Current intended meaning of the calls is that the kernel takes control of
console input. In the future the semantics may be extended to mean that
the calling thread takes full ownership of the console (e.g. console
output from other threads could be suspended).
Inspired by: bde
MFC after: 2 months
2011-12-17 15:08:43 +00:00
tuexen
04ff721cff
Address warnings found by clang.
...
MFC after: 3 months.
2011-12-17 14:55:19 +00:00
dim
7613fb2251
More fixes for correct printf length modifiers usr.bin/gprof.
...
MFC after: 1 week
2011-12-17 14:51:24 +00:00
dim
3e7d833c6a
In usr.bin/gprof/aout.c, use the correct printf length modifier for a
...
uint32_t.
MFC after: 1 week
2011-12-17 14:37:41 +00:00
dim
b640df813e
In contrib/ee/ee.c, fix a few warnings about format strings not being
...
literals. Also, change the direction argument to move_rel() from char
to int; K&R function definions cause it to be promoted to an int anyway,
and this way we avoid clang warning about it.
MFC after: 1 week
2011-12-17 14:26:16 +00:00
dim
11ec38a1ad
In usr.bin/csup/proto.c, use the correct printf length modifier to print
...
an off_t.
MFC after: 1 week
2011-12-17 13:52:53 +00:00
dim
bea618a3e2
In usr.bin/csup/auth.c, use the correct number of bytes for zeroing the
...
shared secret, and use long long format to snprintf a time_t.
MFC after: 1 week
2011-12-17 13:14:44 +00:00
dim
b1d87fffec
In contrib/bzip2/bzip2recover.c, use the correct printf length modifier
...
for unsigned long long.
MFC after: 1 week
2011-12-17 12:52:58 +00:00
bz
d13adceee2
Adter r228571 unbreak architectures with strict alignment rules
...
by copying rather than casting.
2011-12-17 11:06:22 +00:00
bschmidt
d812d4dc6a
Remove now redundant mac argument.
...
Discussed with: adrian@
2011-12-17 10:32:31 +00:00
bschmidt
49344f6037
Fix some net80211 enum nits:
...
- ic_vap_create() uses an ieee80211_opmode argument
- ieee80211_rate2media() takes an ieee80211_phymode argument
- ieee80211_plcp2rate() takes an ieee80211_phytype argument
- cast to enum ieee80211_protmode and ieee80211_roamingmode to silence
compiler warnings
Submitted by: arundel@
2011-12-17 10:23:17 +00:00
ru
a6ba1663e4
Fixed some of markup.
...
Reviewed by: jhb
2011-12-17 06:57:35 +00:00
dim
a709fcdc55
In usr.bin/mt/mt.c, the c_code member of struct commands should really
...
be an unsigned long, since it will contain values of ioctl request
codes. On 64-bit arches, these will not fit into an int.
MFC after: 1 week
2011-12-17 02:23:30 +00:00
dim
32859c5990
In sbin/devd/devd.h, 'event_proc' and 'eps' are declared as structs. In
...
devd.hh, there are redeclared as classes. Fix the inconsistency.
MFC after: 1 week
2011-12-17 01:54:51 +00:00
dim
f68951a3dd
Disable yet another clang warning when WARNS <= 3.
...
MFC after: 1 week
2011-12-17 01:51:12 +00:00
dim
8c3e7b0062
In usr.bin/tar/tree.c, if you really want to poke to NULL, you must use
...
volatile, otherwise the indirection will not be emitted.
MFC after: 1 week
2011-12-17 01:36:50 +00:00
dim
7654ad9896
In sbin/dhclient, since we know the size of the source strings anyway,
...
we might as well use memcpy; strlcpy is really unnecessary here.
MFC after: 1 week
2011-12-17 01:29:46 +00:00
dim
b10871ad5b
In sbin/dhclient, work around warnings about the size argument to
...
strlcpy appearing to be the size of the source buffer, instead of the
destination.
MFC after: 1 week
2011-12-17 01:19:07 +00:00
dim
47dd4657ea
Use both NO_WFORMAT and NO_WARRAY_BOUNDS for sbin/ipf, it would be too
...
disruptive to actually fix all the warnings, and the code hasn't been
maintained for several years.
MFC after: 1 week
2011-12-17 00:54:09 +00:00
dim
bbe4aa1fe1
In sbin/atm/atmconfig/diag.c, fix a few warnings about format strings
...
not being literals.
MFC after: 1 week
2011-12-17 00:26:45 +00:00
dim
60426ce781
Use NO_WCAST_ALIGN for sbin/gbde, this is more appropriate to fix the
...
alignment warnings than using WARNS=3, and it also works for clang.
MFC after: 1 week
2011-12-17 00:14:40 +00:00
nwhitehorn
8241656bb7
Allow this to work on embedded systems without Open Firmware by making
...
lack of a /chosen non-fatal, and manually removing memory in use by the
kernel from the physical memory map.
Submitted by: rpaulo
2011-12-16 23:46:05 +00:00
dim
30af3079fa
Use NO_WARRAY_BOUNDS for sbin/routed/rtquery.
...
MFC after: 1 week
2011-12-16 23:43:58 +00:00
dim
d9e9968084
Add a NO_WARRAY_BOUNDS setting to bsd.sys.mk, only applicable to clang,
...
to selectively work around warnings in programs that don't use flexible
array members, but instead define arrays of length 1 at the end of the
struct, and then access those beyond their declared bounds.
MFC after: 1 week
2011-12-16 23:42:25 +00:00
nwhitehorn
bbbfdb6367
Zero BSS on start, in case the ELF loader that started the kernel did not
...
do this for us. This can happen on some embedded systems.
Submitted by: rpaulo
2011-12-16 23:40:56 +00:00
dim
b0fe51d189
In contrib/gperf/src/output.cc, use the correct printf length modifier
...
for a ptrdiff_t.
MFC after: 1 week
2011-12-16 23:15:11 +00:00
dim
ecef4f25a6
In sbin/fsdb/fsdbutil.c, work around a clang false positive with printf
...
format warnings and conditional operators. (See LLVM PR 11313 for more
information.)
MFC after: 1 week
2011-12-16 23:09:31 +00:00
dim
e91eea2c9e
In sbin/camcontrol/camcontrol.c, fix a few warnings about format strings
...
not being literals.
MFC after: 1 week
2011-12-16 22:35:19 +00:00
dim
161a99dd74
Define YY_NO_INPUT when building libbinutils, to prevent warnings about
...
unused input() functions emitted by lex.
MFC after: 1 week
2011-12-16 22:19:13 +00:00
dim
f993aa3b86
Fix the incompatible enum conversions in libexec/ypxfr in another, more
...
messy way, so as to not disrupt other yp programs: just add casts to
convert the incompatible enums, as the numerical values are the same
(either by accident, design, or the phase of the moon at that time).
MFC after: 1 week
2011-12-16 22:05:10 +00:00
dim
ca3809987c
Revert r228592, as the non-messy way of fixing ypxfr breaks other yp
...
programs (e.g. usr.sbin/rpc.yppasswdd).
Spotted by: np
MFC after: 1 week
2011-12-16 21:57:44 +00:00