Dimitry Andric
16e7cc26b9
Merge ^/head r283771 through r283870.
2015-06-01 06:54:21 +00:00
Dimitry Andric
38954a1d1c
Remove unneeded NULL checks in amd64's trap_fatal().
...
Since td_name is an array member of struct thread, it can never be NULL,
so the check can be removed. In addition, curproc can never be NULL,
so remove the if statement, and splice the two printfs() together.
While here, remove the u_long cast, and use the correct printf format
specifier curproc->p_pid.
Reviewed by: kib
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D2695
2015-06-01 06:50:39 +00:00
Marcelo Araujo
9310c7d568
Fix the wrong format, format specifies type 'int' but the argument has type
...
'long', it was spotted by clang.
Differential Revision: D2663
Reviewed by: imp, rodrigc
2015-06-01 06:14:17 +00:00
Marcelo Araujo
a770b4d8ae
Remove unused variable spotted by clang.
...
Differential Revision: D2685
Reviewed by: rodrigc, stas
2015-06-01 06:05:53 +00:00
Marcelo Araujo
16eb357647
Remove unused variable, this variable fmtstr was introduced at revision r225868
...
and it is not used anymore after the convertion to use libxo at revision r283304.
Differential Revision: D2678
Reviewed by: marcel
2015-06-01 06:00:04 +00:00
Navdeep Parhar
a89409b817
cxgbe: no need to display the per-lane GT/s rating of the pcie link.
...
MFC after: 1 week
2015-06-01 03:24:39 +00:00
Devin Teske
324c11a1be
Fix a debug statement. Only the callback function (performing the
...
incrementing of dpv_overall_oread) knows what its purpose is (and
often times it was bytes, not lines).
MFC after: 3 days
X-MFC-to: stable/10
2015-06-01 02:06:57 +00:00
Navdeep Parhar
6af2071b47
cxgbe: set minimum burst size when fetching freelist buffers to 128B.
...
MFC after: 3 days
2015-06-01 00:55:15 +00:00
Enji Cooper
2cfac4737a
Append to SUBDIR, not set it
...
Pointyhat to: ngie
2015-05-31 22:24:29 +00:00
Craig Rodrigues
89482baab7
ypxfr(8): Use the correct enum member for checking yp_errno.
...
Found-by: gcc47
Submitted by: Sascha Wildner <swildner@dragonflybsd.org>
Obtained from: DragonFlyBSD (commit d0b3a17c3c6)
2015-05-31 22:20:36 +00:00
Baptiste Daroussin
6138e089bc
Cast to gid_t for groups not uid_t
2015-05-31 22:12:31 +00:00
Baptiste Daroussin
68cea7d570
Remove useless cast in printf and printf-like functions:
...
use %u for uid_t and gid_t
2015-05-31 22:07:03 +00:00
Baptiste Daroussin
ee2582c212
Cast -1 to uid_t and bump WARNING level to 3
2015-05-31 21:44:09 +00:00
Enji Cooper
656657fa82
Remove empty tests directory
...
X-MFC with: r282059, r283056
2015-05-31 21:39:08 +00:00
Andrew Turner
76768e8a26
Set the return value correctly on copy failure in copystr.
...
MFC after: 1 week
2015-05-31 21:03:06 +00:00
Craig Rodrigues
35ee6bbaef
Fix some gcc compiler warnings.
...
Submitted by: Sascha Wildner <swildner@dragonflybsd.org>
Obtained from: DragonFlyBSD (commit 51798e10f3dd)
2015-05-31 20:45:35 +00:00
Craig Rodrigues
4a2ec8401f
yppoll(8): Comment out -h option.
...
The implementation of it is missing (see e.g. NetBSD or OpenBSD). Until
someone works on it, comment out the existing code to silence a warning
about 'hostname' being set but unused.
Found-by: gcc47
Submitted by: Sascha Wildner <swildner@dragonflybsd.org>
Obtained from: DragonFlyBSD (commit e455855db)
2015-05-31 20:20:24 +00:00
John Baldwin
eddb85c663
Consistently only use one end of the pipe in the parent and debugger
...
processes and do not rely on EOF due to a close() in the debugger.
PR: 200489
Differential Revision: https://reviews.freebsd.org/D2674
Reviewed by: kib, ngie, rodrigc
2015-05-31 19:43:35 +00:00
Craig Rodrigues
73fe130441
Use proper prototype for harmless().
2015-05-31 19:09:24 +00:00
Craig Rodrigues
9c75ed7f39
Make x_putlong() and x_putbytes() prototypes match the
...
prototypes in <rpc/xdr.h>
2015-05-31 18:11:20 +00:00
Craig Rodrigues
d660d38da5
Use ANSI C prototypes.
2015-05-31 18:08:58 +00:00
Konstantin Belousov
aef373ce38
Remove unused variable.
...
When deallocate_dependencies() is performed,
softdep_journal_freeblocks() already called cancel_allocdirect() which
should have eliminated direct dependencies for all truncated full
blocks. The indirect dependencies are allowed above, since second-
and third-level dependencies are only dealt with by the code which
frees indirect block, which happens after the inode write.
Discussed with: mckusick, jeff
Reviewed by: jeff
Sponsored by: The FreeBSD Foundation
MFC after: 2 weeks
2015-05-31 15:50:54 +00:00
Andrew Turner
6c5bc49c5a
Add the needed if-then instructions to build as Thumb-2.
2015-05-31 14:04:11 +00:00
Andrew Turner
ab70803433
Remove __ARM_EABI__ from more places in libc as this is the only ARM ABI
...
we support.
2015-05-31 12:53:10 +00:00
Michael Tuexen
27edc3a655
The code starts with base + 1 as the first port. Fix to documentation
...
to match that.
MFC after: 3 days
2015-05-31 12:18:30 +00:00
Michael Tuexen
0239602b83
A TCP checksum of 0 is completely valid. Mapping 0 to 0xffff only
...
applies to UDP and UDP-Lite.
MFC after: 3 days
2015-05-31 12:11:05 +00:00
Baptiste Daroussin
7fc593dd82
Move cleanup functions to the right place
2015-05-31 12:04:06 +00:00
Michael Tuexen
3628ed585b
Don't send illegal packets when using UDP-Lite.
...
MFC after: 3 days
2015-05-31 12:03:38 +00:00
Baptiste Daroussin
2e6d97a407
Remove useless test before free()
2015-05-31 11:56:59 +00:00
Baptiste Daroussin
c69b42d00b
Return early in case we cannot read the configuration file
...
This drops one level of indentation
2015-05-31 11:55:28 +00:00
Baptiste Daroussin
5710dc534c
Make pw_user()/pw_group() more consitent about errors
...
Some of errors were returned to the main function, some others caused a direct
exit via err(3).
The main function is only interested in EXIT_SUCCESS, so in all other cases
replace warn(3) + return err by err(3)
2015-05-31 11:23:19 +00:00
Michael Tuexen
4b5a89f438
Use an empty string for field descriptions of unknown protocols.
...
MFC after: 3 days
2015-05-31 10:51:36 +00:00
Andrew Turner
ae160b23fa
We only support the ARM EABI in head, remove the check on __ARM_EABI__.
2015-05-31 10:51:06 +00:00
Baptiste Daroussin
850f836ad8
Remove uneeded intermediate variable
2015-05-31 10:18:10 +00:00
Baptiste Daroussin
e55af20b47
Remove uneeded intermediate variable
2015-05-31 10:14:13 +00:00
Baptiste Daroussin
197419154e
Use asprintf instead of malloc + snprintf and test the memory allocation
2015-05-31 10:02:01 +00:00
Michael Tuexen
027cfc25a9
Don't send malformed SCTP probe packets.
...
MFC after: 3 days
2015-05-31 09:12:46 +00:00
Andrew Turner
24e8388b29
Use a register to set the cpsr bits. The ip register is safe to be changed
...
within all of these functions, and is only stored in some to correctly pad
the stack.
This will be needed to build as Thumb-2 as, unlike with ARM instructions,
the msr instruction only takes a register as the input.
2015-05-31 09:07:26 +00:00
Michael Tuexen
f826bfc33f
When the packet verification fails in verbose mode, print the correct
...
number of words in host byte order. Also remove a stray 'x'.
MFC after: 3 days
2015-05-31 08:10:35 +00:00
Andrew Turner
97f8390e7d
Add more __aeabi_memcpy functions, later versions of clang generate calls
...
to these functions.
2015-05-31 07:31:20 +00:00
Andrew Turner
b35f8350c2
Use a spelling of .thumb clang understands.
2015-05-31 07:28:34 +00:00
Marcelo Araujo
3287272dab
Fix warning of implicit declaration of function 'mkdir'.
...
Differential Revision: D2662
Reviewed by: rodrigc, ngie
2015-05-31 02:21:35 +00:00
Alan Cox
c4e49ba477
Document vm_page_alloc_contig()'s support for the VM_ALLOC_NODUMP option.
...
MFC after: 3 days
2015-05-30 23:37:47 +00:00
Luiz Otavio O Souza
476cc64e6e
Remove the broken-txfifo setting for Allwinnner SoCs.
...
This fixes the eventual missing characters when you type too fast or paste
some text on console.
2015-05-30 22:32:48 +00:00
Michael Tuexen
a6167a2523
There is no payload anymore. So compute the minimum packet length
...
correctly and use 40 as the default (if the minumum allows it), as
specified in the man page.
MFC after: 3 days
2015-05-30 20:39:19 +00:00
Michael Tuexen
3105514edd
Require the embedded packet to contain 8 bytes after the IP header instead
...
of only 4. This is guaranteed by RFC 792 and the verification of GRE, ICMP
and TCP packets use 8 bytes.
MFC after: 3 days
2015-05-30 19:52:28 +00:00
Michael Tuexen
8dcbd3fed4
Remove trailing whitespaces.
2015-05-30 19:48:40 +00:00
Baptiste Daroussin
75e20d65dc
Remove libmandoc from bootstrap tools
2015-05-30 19:30:23 +00:00
Baptiste Daroussin
f5e4216e43
Only push libohash once in bootstrap tools
2015-05-30 19:29:19 +00:00
Dimitry Andric
6b02d18041
Restore an accidentally deleted .endif.
2015-05-30 18:38:06 +00:00