summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Make the __FBSDID usage consistentobrien2003-05-056-26/+22
| | | | and protect copyright[] from Gcc 3.3's whining.
* Change the semantics of sysv shm emulation to take a additionalmbr2003-05-053-108/+179
| | | | | | | | | | | | | | | | | argument to the functions shm{at,ctl}1 and shm_find_segment_by_shmid{x}. The BSD semantics didn't allow the usage of shared segment after being marked for removal through IPC_RMID. The patch involves the following functions: - shmat - shmctl - shm_find_segment_by_shmid - shm_find_segment_by_shmidx - linux_shmat - linux_shmctl Submitted by: Orlando Bassotto <orlando.bassotto@ieo-research.it> Reviewed by: marcel
* Back out rev 1.146 -- it broke the LINT build.obrien2003-05-051-1/+1
| | | | We are about to enter the 5.1 code freeze and things must be buildable.
* Revert rev 1.396 -- it broke the Alpha kernel build.obrien2003-05-051-1/+1
|
* Add the dragon screen saver.murray2003-05-052-0/+4
| | | | | PR: bin/51571 MFC After: 1 week
* Re-order the the initialization slightly to improve structure.phk2003-05-051-22/+22
|
* Negate the logic of MAKE_KERBEROS5, and replace it with NO_KERBEROS.markm2003-05-051-4/+4
|
* Add sector size member to subdisk, plex and volume objects.grog2003-05-051-0/+3
|
* Remove an accidental #include.grog2003-05-051-8/+30
| | | | | | | | Maintain sector sizes for all objects, not just for drives. Some of this could do with improvement: in particular, we get an error if the components of an object have different sector sizes. Clean up some comments.
* Implement DIOCGSECTORSIZE and DIOCGMEDIASIZE ioctls. It appears thatgrog2003-05-051-0/+24
| | | | they are now necessary to use newfs(8).
* Use a dedicated malloc(9) bucket for sector storage.phk2003-05-051-7/+9
|
* vinum_start: Call vinum_read with correct number of parameters.grog2003-05-051-1/+1
|
* Add two KASSERTS which trigger if free(9) would drag the "memuse" statisticphk2003-05-051-0/+6
| | | | | for a malloc bucket under zero. This typically happens if you malloc(9) from one bucket and free to another.
* Don't warn if the rawoffset is zero, that is actually the best value itphk2003-05-051-1/+1
| | | | could have.
* regen.murray2003-05-052-2/+39
|
* Add KEYSPAN USA19QW, JRC PHONE, SANDISK SDDR75.murray2003-05-051-0/+7
| | | | PR: misc/48141, bin/51265, kern/49053, kern/50144
* Turn MAKE_KERBEROS5 into NO_KERBEROS by negating the logic. Some extramarkm2003-05-0516-47/+30
| | | | | cleanups were necessary in release/Makefile, and the tinderbox code was syntax checked, not run checked.
* Correct failed checkin. Only one of the hunks in the last checkingrog2003-05-051-1/+1
| | | | seems to have made it.
* Since we insist on loading the POS ACPI by default, give the poor userobrien2003-05-051-0/+5
| | | | instructions on the main help screen for disabling it.
* Use le32dec() instead of le32toh() because we are not guaranteed to havephk2003-05-051-1/+1
| | | | a word aligned input.
* Turn the check that rawoffset == mbroffset into a warning instead.phk2003-05-051-3/+5
|
* Backout last commit. It is redundant in -CURRENT.murray2003-05-051-5/+1
| | | | Pointed out by: David Schultz
* Add Norwegian dvorak keymap.murray2003-05-053-1/+120
| | | | | PR: conf/47556 Submitted by: Eirik Nygaard <eirikn@bluezone.no>
* Add amnia, amniotic, and amniocentesis.murray2003-05-051-0/+3
| | | | | | | PR: misc/47342 Submitted by: Gareth McCaughan <Gareth.McCaughan@pobox.com> (a pedantic medical student?) MFC After: 1 week
* Make the output more consistent.murray2003-05-051-6/+2
|
* Clarify comments.grog2003-05-051-2/+2
|
* Add "preferred" keyword.grog2003-05-052-0/+7
|
* White space fixes.grog2003-05-051-3/+4
|
* Remove DIOCGDINFO ioctl. This almost makes newfs work again withoutgrog2003-05-051-14/+41
| | | | | | | | | | the -v option, though it's not clear that it won't bite us elsewhere. Forgotten by: phk Implement setreadpol() function for the VINUM_READPOL ioctl. Submitted by: Allan Saddi <allan@saddi.com>
* vinum_scandisk: Make sure the config is locked before we mess aroundgrog2003-05-051-15/+22
| | | | | | | | | | | | | | | | | | | | | with it. Finally implement read policies. The previous "implementation" didn't work because it referred to plexes which were almost invariably when referred to. Instead, deprecate the "prefer" keyword for volumes (though it's still there for the moment) and add a keyword "preferred" to the plex definition. The relationship is like this: Old: vol foo ... prefer foo.p3 New: plex foo.p3 volume foo preferred print_config: Print "preferred" where appropriate. No longer print "prefer" on volume config entries.
* Finally implement read policies. The previous "implementation" didn'tgrog2003-05-051-22/+52
| | | | | | | | | | | | | | | | | | | | | work because it referred to plexes which were almost invariably when referred to. Instead, deprecate the "prefer" keyword for volumes (though it's still there for the moment) and add a keyword "preferred" to the plex definition. The relationship is like this: Old: vol foo ... prefer foo.p3 New: plex foo.p3 volume foo preferred give_plex_to_volume: set preferred plex if specified on plex definition entry. This involves adding a parameter to the function to specify the preferred plex. config_plex: Implement preferred keyword.
* Move the setting of the BOOTABLE flag outside of .if MAKE_ISOS so thatmurray2003-05-051-1/+1
| | | | | | | | | bootable CDs can still be created if the iso.1 target is called directly. PR: misc/47191 Submitted by: Joost Bekkers <joost@bps.jodocus.org> MFC after: 1 week
* free_vinum: Rearrange sequence of actions to avoid potential racegrog2003-05-051-8/+7
| | | | condition when shutting down.
* vinum_readpol: Get this right.grog2003-05-051-19/+20
| | | | | | Submitted by: Allan Saddi <allan@saddi.com> vinum_read: White space cleanup.
* Finally implement read policies. The previous "implementation" didn'tgrog2003-05-051-3/+7
| | | | | | | | | | | | | | | | | | | | | | work because it referred to plexes which were almost invariably when referred to. Instead, deprecate the "prefer" keyword for volumes (though it's still there for the moment) and add a keyword "preferred" to the plex definition. The relationship is like this: Old: vol foo ... prefer foo.p3 New: plex foo.p3 volume foo preferred printconfig: Print out the "preferred" keyword for plexes where appropriate. Still print out "prefer" for volumes. The kernel module continues to accept this version, but it's probably not going to live much longer.
* call dump_queues() only when DEBUG_THREAD_KERN is defined, save somedavidxu2003-05-052-0/+4
| | | | cpu cycles.
* Catch up with 1995(?) for modem speeds (use 57600 instead of 115200 forbde2003-05-051-2/+2
| | | | the example host to modem speed).
* Revert rev 1.78 of dokern.sh. The ncv, stg, and nsp drivers aren'tscottl2003-05-052-6/+0
| | | | | specific to pc98, and it looks like space on the kernel floppy isn't as tight as it was.
* Back out accidentally committed debuggingimp2003-05-041-8/+0
|
* When resetting to defaults, reset drainwait to the current default pfbde2003-05-041-2/+3
| | | | `sysctl -n kern.drainwait` instead of to the boot-time default of 300.
* Replace use of a spinlock with a mutex.deischen2003-05-042-12/+9
|
* Protect against a race between granting a lock and accessingdeischen2003-05-044-14/+56
| | | | | | other parts of the lock. Submitted by: davidxu
* Style fixes.kan2003-05-048-83/+86
| | | | | | | | | Remove DBL_DIG, DBL_MIN, DBL_MAX and their FLT_ counterparts, they were marked for deprecation ever since SUSv1 at least. Only define ULLONG_MIN/MAX and LLONG_MAX if long long type is supported. Restore a lost comment in MI _limits.h file and remove it from sys/limits.h where it does not belong.
* A few grammatical improvements.murray2003-05-041-3/+5
| | | | | PR: docs/40911 MFC After: 3 days
* Cleanup hostname matching in syslogd:gshapiro2003-05-041-17/+24
| | | | | | | | | | | | | | | | | | | 1. Hostnames were not treated case insensitively in all cases. 2. The method for stripping hostnames when reading the syslog.conf differed from that when finding the hostname of an incoming request. This lead to a broken match check. In my case, it meant I had to have '@scooter.smi.example.com.example.com' to have 'logger.example.com' properly save messages from 'scooter.smi.sendmail.com'. 3. Add paranoia to cfline() such that it doesn't try to access memory outside of the bounds of the f_host string. 4. While I am here, get rid of an outdated comment, argv[{0,1,2}] are now checked for NULL after the strdup() calls. Reviewed by: dwmalone MFC after: 1 week
* Note that the idletime setting is not enforced.murray2003-05-041-1/+5
| | | | | PR: docs/40952 MFC After: 3 days
* Add more detail on CPUs to AS4100 section based on some experimentation.wilko2003-05-041-8/+18
| | | | Minor misc. wordsmithing
* Add transparent handling of mbroffset for backwards compatibility.phk2003-05-041-1/+25
|
* Only accept a rawoffset if it is identical to the mbroffset.phk2003-05-041-0/+4
|
* Add a way to read the current mbroffset from a BSD label class.phk2003-05-041-1/+7
|
OpenPOWER on IntegriCloud