| Age | Commit message (Collapse) | Author |
|
This is a residual of the $FreeBSD$ removal.
MFC After: 3 days (though I'll just run the command on the branches)
Sponsored by: Netflix
|
|
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
|
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
|
|
Python 2.7 will retire on Januari 1, 2020.
Notes:
svn path=/head/; revision=349551
|
|
base and size parameters to ofs and len (resp). Add a new
busdma_sync() that makes the entire MD coherent.
Notes:
svn path=/head/; revision=286176
|
|
identification (e.g. isa:0x3f0 or pci0:2:1:0). In libbus,
the device is turned into a path name. For bus_space_map(),
the resource is now specified in a second argument.
Before:
bus.map('/dev/proto/pci0:2:1:0/pcicfg')
busdma.tag_create('/dev/proto/pci0:2:1:0/busdma', ...)
Now:
bus.map('pci0:2:1:0', 'pcicfg')
busdma.tag_create('pci0:2:1:0', ...)
Notes:
svn path=/head/; revision=285903
|
|
While here:
1. have the Python bindings contain constants for the space
identifiers and the sync operation.
2. change the segment iterators to return None when done,
not ENXIO.
Notes:
svn path=/head/; revision=285075
|
|
Notes:
svn path=/head/; revision=285071
|
|
can be in bus address space, physical memory space or virtual
memory space.
Notes:
svn path=/head/; revision=284253
|
|
API match the convenience macros in <sys/bus.h>. Bus space
can now reference both bus and busdma.
Notes:
svn path=/head/; revision=284228
|
|
Notes:
svn path=/head/; revision=284146
|
|
Notes:
svn path=/head/; revision=284080
|
|
to bus_space(9) and that uses the proto(4) driver for talking to
hardware. If the I/O resource is a memory mapped I/O resource,
then mmap(2) will be attempted to avoid read(2)/write(2) overhead.
Sponsored by: Juniper Networks, Inc.
Notes:
svn path=/head/; revision=265056
|