summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix warning (const lost in assignment), harmless in this case.peter2002-02-281-1/+1
|
* Fix warnings (prototype for nonexisting static function)peter2002-02-281-2/+0
|
* - When enabling/disabling interrupts, set/clear both PSL_EE and PSL_RI, notbenno2002-02-281-5/+12
| | | | | just PSL_EE. - Make cpu_critical_enter/exit independant of save_intr/restore_intr.
* Fix warnings.. bootpc_init() and related.peter2002-02-284-12/+5
|
* Add a missing (.benno2002-02-281-1/+1
|
* Fix warningspeter2002-02-281-10/+11
|
* Fix warningspeter2002-02-282-8/+8
|
* Implement the following functions:benno2002-02-283-12/+93
| | | | | | - pmap_remove - pmap_kremove - pmap_qremove
* Remove most of the usage of critical_enter/exit.benno2002-02-283-87/+0
| | | | | | | | I put these in to match the use of spl*() in the NetBSD code I was basing this on, but it appears to cause problems. I'm doing this in a separate commit so as to be able to refer back if locking becomes an issue at a later stage.
* Some style(9) whitespace fixes and a correction to the copyright.brooks2002-02-281-22/+24
|
* Fix another boatload of warnings (missing include) and a cosmeticpeter2002-02-282-0/+4
| | | | -Wuninitialized warning.
* Fix warnings.peter2002-02-281-2/+2
|
* Fix debug printf formatspeter2002-02-281-2/+1
|
* For unbraking "make release": s/client/common/gmatusita2002-02-281-7/+7
| | | | | | (these files are sitting in src/contrib/isc-dhcp/common, not .../client.) Confirmed by: 5.0-CURRENT-20020228-JPSNAP at snapshots.jp.FreeBSD.org
* Fix some unused warnings. One function is only used ifpeter2002-02-271-0/+8
| | | | TWE_SHUTDOWN_NOTIFICATION is defined, the other two are never used.
* Fix warnings (comment out unused tables that are taking space in thepeter2002-02-271-0/+4
| | | | kernel)
* Tag if_ie.c, isp.c and isp_pci.c as nowerror (qualifier problems, and thirdpeter2002-02-271-3/+3
| | | | party code)
* Fix warningspeter2002-02-272-2/+2
|
* Fix warnings. The driver would be more useful with a DRIVER_MODULE()peter2002-02-274-1/+5
| | | | entry so that it actually can do something.
* When searching an object that was opened with RTLD_GLOBAL, search its DAG too.des2002-02-271-3/+6
| | | | | | PR: bin/25059 Approved by: jdp MFC after: 3 weeks
* Repair some warnings. These are accessing idle portions of shared memorypeter2002-02-271-5/+9
| | | | buffers.
* Remove support for FreeBSD 2.x from this driver.imp2002-02-271-120/+1
|
* Fix warning (unused variable)peter2002-02-271-1/+0
| | | | Submitted by: LINT, -Werror
* Mark a few more broken pci drivers as nowerror.peter2002-02-271-6/+6
|
* Fix warning (passing wrong arg to arp_ifinit())peter2002-02-271-1/+1
| | | | Submitted by: LINT, -Werror
* Mark stallion.c as nowerror (known broken, this is a #warning)peter2002-02-272-2/+2
|
* Fix format warning.peter2002-02-271-1/+1
| | | | Submitted by: LINT, -Werror
* The do { } while (0) macro example was missing a space after the 'e'.imp2002-02-271-1/+1
|
* Use SIGUSR1 to propogate SIGURG to the child; security measures preventfenner2002-02-271-2/+3
| | | | | the parent from sending SIGURG itself to the child. This fixes the problem of occasionally failing to pass the window size.
* Improve error reporting - report error message when there is one, orfenner2002-02-271-1/+4
| | | | report a short read if that's what we're reporting.
* Use network byte order for the ICMP sequence number. This is onlyfenner2002-02-271-6/+8
| | | | | significant when monitoring packets on another system, since otherwise the ICMP sequence number is only used by the ping client.
* Use login_getpwclass() instead of login_getclass() so that defaultgreen2002-02-271-1/+1
| | | | | | | mapping of user login classes works. Obtained from: TrustedBSD project Sponsored by: DARPA, NAI Labs
* Minor style(9) nit + utilize ELF features for the FreeBSD ID.obrien2002-02-273-16/+10
|
* Back out part of KSE/M2 that snuck in under the radar: changing thejhb2002-02-273-5/+5
| | | | | | prototype of bzero() on the i386 to have a volatile first argument. Requested by: bde, jake
* Check if string is not NULL, not *string, before setting *string.green2002-02-271-2/+2
|
* We do not support the sparc platform.obrien2002-02-272-129/+0
|
* Minor WS change to improve readability.obrien2002-02-272-6/+6
|
* Unbreak fore adapters from POV of warnings.julian2002-02-272-2/+2
| | | | | | Define the atm_dev_free() routine so that its OK to free stuff that is defined as volatile. Note this doesn't FORCE the arguemnts to be volatile, just says that it's not an error if it is..
* Remove now unused struct proc *p.imp2002-02-271-1/+0
| | | | Approved by: jhb
* - Insert a space in the panic() string in order more clearly show thearr2002-02-272-2/+2
| | | | message.
* Add a comment explaining a code change..julian2002-02-271-2/+2
|
* Use thread0.td_ucred instead of proc0.p_ucred. This change is cosmeticjhb2002-02-273-11/+11
| | | | | | and isn't strictly required. However, it lowers the number of false positives found when grep'ing the kernel sources for p_ucred to ensure proper locking.
* - Change namei() to use td_ucred instead of p_ucred.jhb2002-02-273-7/+7
| | | | | - Change the hack in access() that uses a temporary credential to set td_ucred to the temp cred instead of p_ucred.
* - Change unp_listen() to accept a thread rather than a proc as its secondjhb2002-02-271-5/+5
| | | | | argument. - Use td_ucred in unp_listen() instead of p_ucred.
* Fix Giant leakage in several error cases in __semctl().jhb2002-02-271-4/+4
|
* Add a comment about an unlocked access to p_ucred that will go away injhb2002-02-271-0/+1
| | | | the near future.
* Use td_ucred and thus remove now unneeded proc lock acquire and release.jhb2002-02-271-3/+1
|
* Use some black make(1) magic to make pkg_install build even withoutsobomax2002-02-271-0/+5
| | | | | | Makefile.inc in parent directory (e.g. when checked out from cvs as a module). MFC after: 2 weeks
* kill __P.alfred2002-02-271-22/+22
|
* add assertions in the places where giant is required to catch whenalfred2002-02-271-0/+12
| | | | | | | | | | | the pipe is locked and shouldn't be. initialize pipe->pipe_mtxp to NULL when creating pipes in order not to trip the above assertions. swap pipe lock with giant around calls to pipe_destroy_write_buffer() pipe_destroy_write_buffer issue noticed by: jhb
OpenPOWER on IntegriCloud