summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add sane-port (Scanner Access Now Easy) as port 6566.bms2010-02-061-0/+2
| | | | | Obtained from: http://www.iana.org/assignments/port-numbers MFC after: 3 days
* Fix single-stepping when the kernel was entered through the EPC syscallmarcel2010-02-061-4/+5
| | | | | | | path. When the taken branch leaves the kernel and enters the process, we still need to execute the instruction at that address. Don't raise SIGTRAP when we branch into the process, but enable single-stepping instead.
* Fill in some missing error handling, be a little more careful aboutkientzle2010-02-062-17/+18
| | | | error reporting, prefer int64_t to off_t.
* bsdtar doesn't actually know what compression is supported by libarchivekientzle2010-02-062-42/+11
| | | | | and it should not pretend that it does. It should just pass along the user's request and handle an error if it's not supported.
* Refactor the siginfo/sigusr1 handling. The read/write reportingkientzle2010-02-067-202/+146
| | | | | | | | | is sufficiently different that it was simpler to just put separate reporting functions into read.c and write.c rather than try to have a single all-purpose reporting function. Switch to a custom function for converting int64_t to a string; in the portable version, this saves a lot of configuration headaches trying to decipher the platform printf().
* Update files to remove when MK_KERBEROS=no.antoine2010-02-061-116/+256
|
* Add files to remove when MK_JAIL=no.antoine2010-02-061-0/+9
|
* Update files to remove when MK_IPX=no.antoine2010-02-061-2/+2
|
* Add files to remove when MK_IPFW=no.antoine2010-02-061-0/+11
|
* Move rescue/ping6 from files to remove when MK_INET6=no to file to removeantoine2010-02-061-1/+4
| | | | when MK_INET6_SUPPORT=no. (MK_INET6=no implies MK_INET6_SUPPORT=no)
* Add file to remove when MK_IDEA=no.antoine2010-02-061-0/+4
|
* Add files to remove when MK_GSSAPI=no.antoine2010-02-061-0/+79
|
* Remove all traces of an experiment for handling "root" on Windows systems.kientzle2010-02-062-7/+6
|
* Reformat the Makefile slightly.kientzle2010-02-061-1/+11
|
* Allow -b up to 8192. I've had reports from people who routinelykientzle2010-02-061-2/+2
| | | | | | use -b 2048 (1MiB block size). Setting the limit to 8192 should allow some room for growth while still helping people who mistakenly put in byte counts here instead of block counts.
* Diff reduction compared to portable bsdtar 2.8: Move thekientzle2010-02-0612-184/+271
| | | | | program name into a global, which eliminates an extra argument from a lot of places.
* Revert unwanted changes in revision 203422.rpaulo2010-02-061-3/+3
| | | | Spotted by: sam
* Add myself.bschmidt2010-02-061-0/+2
| | | | Approved by: rpaulo (mentor)
* - Cast intptr_t, pid_t and time_t values to intmax_t and use %jd withjh2010-02-061-16/+19
| | | | | | | | | printf. - Cast the system call return value to long and use %ld in a printf in ktrsysret(). PR: bin/123774 MFC after: 2 weeks
* Add missing coma.trasz2010-02-061-2/+2
|
* Propagate the vlan eventis to the underlying interfaces/members so they can ↵eri2010-02-062-0/+61
| | | | | | | | | do initialization of hw related features. PR: kern/141646 Reviewed by: thompsa Approved by: thompsa(co-mentor) MFC after: 2 weeks
* Add the -i option to the synopsis.gavin2010-02-061-2/+2
| | | | | Submitted by: dhw MFC after: 1 week (with r203310)
* acpi_cpu: prefer _OSC over _PDC, just in caseavg2010-02-061-20/+18
| | | | | | | | | | | | | | _PDC was deprecated in favor of _OSC long time ago, but it seems that they still peacefully coexist and in some case only _PDC is present. Still _OSC provides a reacher interface and is capable to report back its status. If the status is non-zero, then report it, we may find it useful to understand what firmware expects from OS. Also clean up some comments that became less useful over time. Reviewed by: njl, jhb, rpaulo MFC after: 3 weeks
* Document one more file descriptor type and two more vnode types.antoine2010-02-061-0/+6
| | | | MFC after: 2 weeks
* Map and report actual video memory we need.jkim2010-02-062-84/+35
|
* Correct two typos.delphij2010-02-061-2/+2
| | | | | Reported by: Brandon Falk <falkman gamozo org> MFC after: 1 week
* Remove two files that are not needed by FreeBSD.delphij2010-02-052-774/+0
| | | | | Approved by: pjd MFC after: 2 weeks
* Fix gcore so that it can have the '-s' flag without hanging.mjacob2010-02-052-27/+19
|
* Fix a bug in previous revision.delphij2010-02-051-1/+1
| | | | | | | | | | | | The bc(1) program may need to deal with files when it's being run in interactive mode, so we can not blindly use interactive mode (in turn use libedit) but need to check if the input source is really the standard input. This commit should fix a regression where 'bc -l' would not parse the mathlib. Reported by: trasz
* Replace some homegrown functions with better/correct ones.jkim2010-02-051-46/+7
|
* Use new helper functions to set PCIe max read request size.mav2010-02-051-12/+2
|
* Add pci_get|set_max_read_req() helper functions to control maximum PCIemav2010-02-052-0/+37
| | | | | | read request size. Reviewed by: jhb@
* Add a description of supported PowerPC hardware to the hardware notes.nwhitehorn2010-02-051-2/+45
|
* Report SATA300 chips also as SATA.mav2010-02-051-1/+2
|
* When hacking INQUIRY result, make sure that it is right INQUIRY and theremav2010-02-051-2/+7
| | | | is enough of result to hack.
* Correct a comment - we are not setting the exception level but rather areneel2010-02-051-17/+10
| | | | | | | disabling interrupts. Simplify register usage - we can directly load 'curpcb' into 'k1' after interrupts are disabled. There is no need to do so indirectly through 'a1'.
* Initialize interrupt controller early on.neel2010-02-051-0/+18
|
* Reimplement all functions to access the system control unit in C.neel2010-02-054-126/+145
| | | | | | | | | The only reason we need to have the sb_load64() and sb_store64() functions in assembly is to cheat the compiler and generate the 'ld' and 'sd' instructions which it otherwise will not do when compiling for a 32-bit architecture. There are some 64-bit registers in the SCD unit that must be accessed using 64-bit load and store instructions.
* style: don't need to use braces for single line control statements.neel2010-02-051-10/+5
|
* The ZTE MF633R modem has a different type of cdrom driver disk, add the productthompsa2010-02-052-0/+2
| | | | | | | ID and use a standard scsi eject. Reported by: Patrick Lamaiziere MFC after: 3 days
* Properly name the 0x0016 ZTE product as MF633R now that its known.thompsa2010-02-042-2/+2
|
* Add the long missing "destroy" option.mjacob2010-02-041-0/+4
| | | | MFC after: 2 weeks
* Open provider for writting when we find the right one. Opening too muchpjd2010-02-041-17/+27
| | | | | | | | | | providers for writing provokes huge traffic related to taste events send by GEOM on close. This can lead to various problems with opening GEOM providers that are created on top of other GEOM providers. Reorted by: Kurt Touet <ktouet@gmail.com>, mr Tested by: mr, Baginski Darren <kickbsd@ya.ru> MFC after: 2 weeks
* Restore the checksum received before processing the packet.tuexen2010-02-041-1/+1
| | | | MFC after: 1 week
* On probe error, if restart requested, skip any retries and recovery.mav2010-02-041-1/+2
| | | | Just restart probe from the beginning immediately.
* Use libedit when interacting with tty, which provided historydelphij2010-02-044-1/+65
| | | | | | | | | | functionality, etc. as did by GNU bc. This also fixes an issue where BSDL bc can not handle very long line. Reported by: imp Reviewed by: imp
* Introduce '[ipaddr]:path' notation.ume2010-02-042-9/+26
| | | | | | | | | | | Since the existing implementation searches ':' backward, a path which includes ':' could not be mounted. You can now mount such path by enclosing an IP address by '[]'. Though we should change to search ':' forward, it will break 'ipv6addr:path' which is currently working. So, it still searches ':' backward, at least for now. MFC after: 2 weeks
* Return CAM_RELEASE_SIMQ flag only when it is needed, when SIM reallymav2010-02-041-12/+10
| | | | was frozen before and should be released.
* Shortening a passphrase caused wrong authentication key to be used.ru2010-02-041-0/+1
| | | | | | Fix this in a FreeBSD and OpenBSD compatible way. MFC after: 3 days
* Mark up "unsigned char".ru2010-02-044-4/+11
|
OpenPOWER on IntegriCloud