| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
| |
cf. http://www.academie-francaise.fr/langue/questions.html#jourdelasemaine (FR)
PR: misc/148792
Submitted by: Mathieu <freebsd@breatheless.net>
MFC after: 1 weeks
|
|
|
|
| |
Prodded by: jhb
|
|
|
|
|
|
|
|
| |
switched.
PR: i386/148344
Approved by: kib (mentor)
MFC after: 1 week
|
| |
|
| |
|
|
|
|
|
|
| |
lengths. Make MI wrapper code to validate periods in request. Make kernel
clock management code to honor these hardware limitations while choosing hz,
stathz and profhz values.
|
|
|
|
| |
MFC after: 3 days
|
|
|
|
| |
Submitted by: Andreas Tobler
|
|\
| |
| |
| |
| |
| | |
Executive is a library that can be used by standalone applications and kernels
to abstract access to Octeon SoC and board-specific hardware and facilities.
The FreeBSD port to Octeon will be updated to use this where possible.
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
OpenSolaris onnv changeset (partial): 10801:e0bf032e8673
Approved by: pjd, delphij (mentor)
Obtained from: OpenSolaris (Bug ID 6891731)
MFC after: 1 week
|
|
|
|
|
|
|
| |
- Fixed segmentation fault when an invalid network interface was given.
- More helpful message in case of wrong PIN number.
Submitted by: Fredrik Lindberg
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Fixed the interface probe routine to only attach to USB interfaces the driver
actually supports. This allows other drivers to attach to things like
MicroSD slots etc.
- Fixed network interface enumeration to be globally sequential instead of
relying on the USB interface numbers. This make sure the first network
interface always is at uhso0 and the second at usho1 and so on.
- Added a radio kill switch; exposed through sysctl.
- Updated the manual page to be verbose about the number of serial ports and
include iCON 452 in the set of tested hardware.
Submitted by: Fredrik Lindberg
|
| |
|
|
|
|
|
| |
Submitted by: zack.kirsch at isilon.com
MFC after: 2 weeks
|
|
|
|
|
|
| |
controllers require RX buffers aligned on BCE_RX_BUF_ALIGN bytes.
Reviewed by: davidch
|
|
|
|
|
|
|
|
| |
calls. Also add BUS_DMA_COHERENT flag to bus_dmamem_alloc(9) to
take advantage of efficient synchronization for architectures that
support that feature.
Reviewed by: davidch
|
|
|
|
|
|
|
| |
BUS_SPACE_MAXSIZE_32BIT to specify sum of all segment lengths.
Previously it used MAXBSIZE which was wrong.
Reviewed by: davidch
|
|
|
|
|
|
|
|
|
| |
MPSAFE flag to cn_flags so that it doesn't panic. The panics weren't
seen since nfsdumpstate(8) is broken for the "-l" case, so this
was never done. I'll do a separate commit to fix nfsdumpstate(8).
Submitted by: zack.kirsch at isilon.com
MFC after: 2 weeks
|
|
|
|
| |
Reviewed by: davidch
|
| |
|
| |
|
|
|
|
| |
Reviewed by: davidch
|
|
|
|
|
|
|
| |
flags.
Some of these parts will support 4K/32K block erases rather than
a sector erase. This includes (at least) the MX25L128.
|
|
|
|
|
|
| |
returned success.
Reviewed by: davidch
|
|
|
|
|
|
| |
this here.
Reviewed by: davidch
|
|
|
|
|
|
|
|
| |
return code. If context was not setup correctly give up
initialization. While I'm here move variable declarations to the
beginning of the function.
Reviewed by: davidch
|
|
|
|
|
|
|
| |
config data. While I'm here, use return code of bce_init_nvram()
to set error instead of directly setting ENODEV.
Reviewed by: davidch
|
| |
|
|
|
|
|
|
|
|
|
| |
find them [1]
- While here, also add a missing Spanish entry
PR: bin/67365 [1]
Submitted by: Pedro F. Giffuni <giffunip@asme.org> [1]
Approved by: delphij (mentor)
|
|
|
|
|
|
|
|
| |
mismatched checksum
PR: conf/124641
Submitted by: Alex Kozlov <spam@rm-rf.kiev.ua>
Approved by: delphij (mentor)
|
| |
|
|
|
|
|
|
|
| |
Font size may be smaller than 16 and logical scan line may be larger than
the displayed scan line.
MFC after: 3 days
|
|
|
|
|
| |
This removes platform dependencies from <machine>/fdt.h for the benfit of
portability.
|
|
|
|
|
| |
This allows for better encapsulation (and eliminates generic fdt_arm.c, at
least for now).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
__start_SECNAME and __stop_SECNAME symbols are automatically generated
by ld for orphan sections, i.e. those not explicitely referenced by a
linker script. The symbols are supposed to be placed correspondingly
at the start and the end of the section in output file. In some cases
__start_SECNAME may be placed at the address after the end of the
previous section (if any) and before the start the section. This
happens when following conditions are met:
1. the orphan section is found in more than one input file
2. the orphan section has different alignment requirements across input
files
3. the first instance of the section encountered doesn't have the
greatest alignment requirement
In these conditions resulting output section will be placed at address
after the end of the previous section aligned to the greatest alignment
requirement in the inputs, but __start_SECNAME will be placed at address
after the end of the previous section aligned to the alignment
requirement of the first input in which the section is encountered.
See commit message of r196118 for a concrete example of problems caused
by this bug.
The fix is to place __start_SECNAME inside the section and use ABSOLUTE
directive, rather than placing __start_SECNAME outside the section and
trying to guess address alignment.
This fix is in line with upstream binutils change/fix made between
versions 2.19 and 2.20 in revision of 1.307 ldlang.c.
MFC after: 3 weeks
|
|
|
|
| |
PR: kern/148013
|
|
|
|
| |
Approved by: imp (mentor)
|
|
|
|
|
|
|
| |
These were sourced from the MX25L128 datasheet and match up
with what is used in Linux mtd/devices/m25p80.c .
Add a FreeBSD keyword whilst I'm here.
|
|\
| |
| |
| |
| |
| | |
OpenSolaris' plockstat utility.
Sponsored by: The FreeBSD Foundation
|
| | |
|
| |
| |
| |
| | |
into available 10 characters by dropping "irq" in the middle of string.
|
| |
| |
| |
| |
| |
| |
| |
| | |
NFSv4 client, so that attributes are not acquired from the server
when a delegation for the file is held. This can reduce the number
of Getattr Ops significantly.
MFC after: 2 weeks
|
| |
| |
| |
| |
| |
| |
| | |
thing; it's also used to indicate that the comment should not be automatically
rewrapped.
Explained by: cperciva@
|
| |
| |
| |
| | |
occurences from sys/sys/ and sys/kern/.
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
Example:
</dev/null &
MFC after: 2 weeks
|
| |
| |
| |
| | |
Submitted by: bde@
|