njoly
d147c93527
Use the appropriates vop_*_args structures.
2012-03-22 22:48:56 +00:00
njoly
8725631c5c
Pass operations flags to genfs_can_chtimes(), not file ones.
2012-03-22 22:16:21 +00:00
wiz
89cc021f65
Bump date for previous.
2012-03-22 21:47:20 +00:00
drochner
a3b2d0861e
obsolete kame_ipsec(4)
2012-03-22 20:52:47 +00:00
christos
69586eb894
From Garo Taft:
...
- Add a -w flag which will make the sanity script sleep for a second before
and after checkouts, commits, and updates.
- Fix expected output to look for the right default action on empty log
message. It's now "abort".
- Add new requests "Checkin-prog" and "Update-prog" to expectation values.
- Add new "access"âand "group" files to CVSROOT admin database expectation
values.
- All tests pass except client-20, which hangs.
2012-03-22 20:49:53 +00:00
drochner
364a06bb29
remove KAME IPSEC, replaced by FAST_IPSEC
2012-03-22 20:34:37 +00:00
drochner
e917deee9c
don't reuse a dynamically allocated stack if a fixed one is requested
2012-03-22 20:01:18 +00:00
christos
f6f28fd5c6
dholland fixed PR/44927
2012-03-22 18:20:46 +00:00
dholland
98573cd6ad
Misplaced parenthesis; fixes PR 44927
2012-03-22 17:46:07 +00:00
christos
1bb11e66cb
vax-specific lint fixes.
2012-03-22 17:32:21 +00:00
christos
92a9368199
only +1 for the 0'th thread (if we did not find any other)
2012-03-22 16:06:01 +00:00
christos
de149fb70f
bring the casts to the operands, not the operation results.
2012-03-22 15:57:29 +00:00
sborrill
33b7078a83
Add IBM ServeRAID M1015 and M5014
2012-03-22 15:43:37 +00:00
christos
c5142b6c92
add constcond, make shifts unsigned
2012-03-22 15:34:14 +00:00
christos
2f9576aacc
complete the mapping of the lwp -> (lwp - 1), by adding 1 where appropriate.
2012-03-22 15:26:32 +00:00
sborrill
e2fd437bbe
Add IBM ServeRAID M5014 as subtype
2012-03-22 15:05:36 +00:00
christos
12968661bf
get rid of the cheesy BAD macros
2012-03-22 14:18:34 +00:00
he
4efbcb2b62
Make this lint-free (only built for real for the __sh__ ports):
...
* Mark some code after goto as /* NOTREACHED */
* Add a cast for file size (off_t) to size_t to avoid warning about
possibly losing bits.
* Avoid a "pointer casts may be troublesome" warning from lint
by doing a cast via "void *" instead of directly to "struct
coff_filehdr *".
2012-03-22 13:42:36 +00:00
he
99339bb8f4
Add a pair of casts to silence lint about conversion possibly losing bits.
2012-03-22 13:25:45 +00:00
he
6f8da331f6
A few modifications to make this build for vax:
...
* The decpt variable is only used if INFNAN_CHECK, which isn't defined
for vax.
* Use a cast to avoid warning about shift of a signed variable.
* Mark a condition as (potentially) a constant condition.
2012-03-22 13:15:48 +00:00
he
648512f83d
A few fixes to make this build for vax:
...
* The fivesbits[] variable is not used for vax
* The decpt variable is only used if INFNAN_CHECK, which isn't
defined for vax
2012-03-22 13:09:12 +00:00
he
ff8e71502d
Convert to use c89 function declaration.
2012-03-22 13:02:15 +00:00
wiz
268cd67266
Fix typo in kauth name. From PR 46234 by Matthew Mondor.
...
Tested by Geoff Adams and Ryo ONODERA.
2012-03-22 12:59:33 +00:00
skrll
d66dab05c4
Shut lint up about dp.
...
From he@
2012-03-22 12:31:32 +00:00
he
1c46a18eb1
Follow the pattern from powerpc, make lint happy.
2012-03-22 09:32:04 +00:00
he
2bf75ee57f
Add a void to make function declaration c89.
2012-03-22 08:56:52 +00:00
he
b722f9f3bf
Add a cast of the shift count to int32_t, so that we don't try
...
to do int32_t << long, since ANSI C doesn't perform "balancing"
before the shift operation according to lint. Should not make a
difference, offset is limited to 0..3 anyway.
2012-03-22 08:54:48 +00:00
he
2df8a64968
Make 'i' unsigned to avoid signed/unsigned comparison warnings from lint.
2012-03-22 08:52:22 +00:00
he
650e27f387
Make sure that the UQUAD_MAX constant is marked as unsigned, to avoid
...
"ANSI C treats constant as unsigned" warning from lint.
2012-03-22 08:39:43 +00:00
wiz
3957bea1ef
Fix whitespace nits. Suggested by Bug Hunting.
2012-03-22 07:58:16 +00:00
matt
3fb1a336a3
Make lint happy.
...
While here, make sure the top of stack is aligned properly.
2012-03-22 05:36:50 +00:00
dholland
975bbee604
typo in comment
2012-03-22 03:06:06 +00:00
christos
24da109f75
Use tid - 1 for the thread id, so that thread 1 matches the main thread
...
before the threaded code gets loaded. fixes spurious breakpoints. Is
there a better way?
2012-03-21 23:20:58 +00:00
matt
e15ed1bd6d
For BookE kernels, use -mmultiple and -misel and enable -fstack-protector
2012-03-21 22:29:21 +00:00
christos
a79bdcfa71
c89 prototypes
2012-03-21 21:37:29 +00:00
christos
9b33eb8aa1
Undo previous, it was wrong:
...
The problem has to do with the threaded initialization.
After we take the first breakpoint and we enter single step mode,
we set trap_expected = 1 in the thread_info structure for main <pid,0,0>.
After the threads initialize, the main thread becomes <pid,1,0>, and so
we get a new thread_info struct with trap_expected = 0, and so we break.
2012-03-21 21:25:38 +00:00
he
638c9cf502
Add some casts to get rid of "bitwise op on signed value is non-portable"
...
warning from lint.
2012-03-21 20:07:52 +00:00
he
2d215eaf5b
Use c89 function declaration.
2012-03-21 20:04:57 +00:00
he
2fa47ecfcb
Lint seems to prefer that we cast via (void*) and not directly to
...
(u_char*), so follow suit.
2012-03-21 20:02:56 +00:00
he
b83eb5c056
Use c89 function declarations in MCOUNT definition.
2012-03-21 19:59:18 +00:00
christos
436a58b1ab
Disable OS supplied single step functionality, because the code here is
...
wrong.
2012-03-21 18:01:34 +00:00
he
1afead990d
Convert from K&R to c89 function definitions.
2012-03-21 16:11:26 +00:00
christos
fa04ef14fe
don't re-define MIN
2012-03-21 15:55:50 +00:00
jakllsch
2bd475c24d
Remove remaining references to pccons options for i386 and shark.
...
pccons has not existed on either port since late 2007.
2012-03-21 15:38:32 +00:00
christos
2fab93ccbb
c89 definitions
2012-03-21 15:32:26 +00:00
christos
acf4d8064f
welcome to WARNS=5
2012-03-21 14:52:40 +00:00
martin
834e2aaa79
Fix query of IMMEDIATE bool values (copy & pasto).
2012-03-21 14:51:36 +00:00
christos
d703a14882
rename umax2s->size_t2s function per apb's request.
2012-03-21 14:32:22 +00:00
christos
b2b93bb9ff
fix argument order.
2012-03-21 14:28:32 +00:00
sborrill
3da3803c32
Add support for skinny variants (e.g. IBM ServeRAID M1015). Based on OpenBSD
...
changes with some improvements. Tested on IBM x3550M3 with RAID0 and RAID1
volumes including bioctl(8) operation.
2012-03-21 14:22:35 +00:00