summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Move the EP_ID_PORT out to 0x110, so it doesn't conflict with other portjoerg1997-10-272-4/+32
| | | | | | | | usage at 0x100. Quoted Justin's quotation from the manual as well, to explain the technical background. PR: kern/4559 Submitted by: Stephen J. Roznowski <sjr@home.net>
* Offending statement removed from STANDARDS section. From what Isteve1997-10-271-14/+1
| | | | | | | can gather from the Posix spec that I have (which is very old) all one character options are extensions to Posix. PR: docs/4701
* Typo fix.steve1997-10-271-2/+2
| | | | | PR: docs/4579 Submitted by: Stephen J. Roznowski <sjr@home.net>
* Fix a misleading comment.steve1997-10-271-2/+2
| | | | | PR: bin/4861 Submitted by: Alex <garbanzo@hooked.net>
* Bump MAXDSIZ to 512MB so that soft limits have a chance to actuallyjkh1997-10-272-4/+4
| | | | | regulate this. Reviewed by: dyson
* Check to see if the pv_limits are initialized before checking.dyson1997-10-272-4/+6
|
* Fix a comment about multicast; since the Etherlink III has nofenner1997-10-272-8/+14
| | | | multicast filter the driver will never learn how to program it.
* - Instead of relying on a functional call to register PCARD-capable drivers,nate1997-10-2613-92/+45
| | | | | | | | use a Linker Set. Note, if a driver is loaded as an LKM if will have to use the function call, but since none of the existing drivers are loadable, this made things cleaner and boot messages nicer. Obtained from: PAO-970616
* Update this little gadet to latest version.phk1997-10-261-38/+40
|
* I guess nobody uses ext2fs in current ?phk1997-10-262-0/+2
| | | | vop_lookup is back now, don't know whan I lost it.
* - Patch the 'skeleton' example driver to be more consistant with the newnate1997-10-261-40/+28
| | | | state of the world.
* VFS interior redecoration.phk1997-10-2629-564/+302
| | | | | | | | | | | | | Rename vn_default_error to vop_defaultop all over the place. Move vn_bwrite from vfs_bio.c to vfs_default.c and call it vop_stdbwrite. Use vop_null instead of nullop. Move vop_nopoll from vfs_subr.c to vfs_default.c Move vop_sharedlock from vfs_subr.c to vfs_default.c Move vop_nolock from vfs_subr.c to vfs_default.c Move vop_nounlock from vfs_subr.c to vfs_default.c Move vop_noislocked from vfs_subr.c to vfs_default.c Use vop_ebadf instead of *_ebadf. Add vop_defaultop for getpages on master vnode in MFS.
* Remade syscalls.master derived files.phk1997-10-265-49/+7
|
* Add "NOIMPL" for syscalls we know what is, but don't implement as "STD".phk1997-10-262-18/+21
| | | | Use this for getfh & nfssvc.
* Simplify the lease_check stuff.phk1997-10-264-45/+12
|
* Always initialize the syscall vectors for our "private" syscalls (notphk1997-10-264-40/+16
| | | | | just in the LKM case). Plug nqnfs_vop_lease_check directly into the default_vnodeop_p table.
* In clntudp_call(), it is possible that xdr_replymsg() might failwpaul1997-10-261-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | partway through its attempt to decode the result structure sent by the server. If this happens, it can leave the result partially populated with dynamically allocated memory. In this event, the xdr_replymsg() failure is detected and RPC_CANTDECODERES is returned, but the memory in the partially populated result struct is not free()d. The end result is that memory is leaked when an RPC_CANTDECODERES error occurs. (This condition can occur if a CLIENT * handle is created using clntudp_bufcreate() with a receive buffer size that is too small to handle the result sent by the server.) Fixed by setting reply_xdrs.x_op to XDR_FREE and calling xdr_replymsg() again to free the memory if an RPC_CANTDECODERES error is detected. I suspect that the clnt_tcp.c, clnt_unix.c and clnt_raw.c modules may ha a similar problem, but I haven't duplicated the condition with those yet. Found by: dbmalloc
* Remove yet another superfluous file.jraynard1997-10-263-61/+3
|
* typo.wosch1997-10-261-2/+2
|
* Use croation week day name. This avoid a name clashwosch1997-10-262-6/+6
| | | | | | | between `Subota' and `Sunday'. ^^ ^^ Submitted by: Slaven Rezic <eserte@cs.tu-berlin.de>
* Cosmetic:brian1997-10-2617-36/+46
| | | | Move prototypes into the correct headers.
* Change the initial amount of memory allocated for pv_entries to be proportionaldyson1997-10-262-14/+36
| | | | | to the amount of system memory. Also, clean-up some of the new pv_entry mgmt code.
* Add -funsigned-char to CFLAGS (for ctype macros)ache1997-10-261-1/+4
|
* Back out mode (unsigned char)...ache1997-10-261-23/+23
|
* Back out (unsigned char) cast, will use -funsigned-char insteadache1997-10-268-42/+42
|
* Typo.helbig1997-10-262-2/+2
|
* Synchronize usage() and man page.helbig1997-10-262-5/+5
| | | | Pointed out by bde.
* - Slightly change the way the border color register is updated so thatyokota1997-10-263-12/+9
| | | | | | | | | flicker won't occur when set_border() is called. - Properly restore the border color when switching virtual consoles. Pointed out by: tony@dell.com OKed by: sos
* - The daemon might go off the screen and crashed the system if theyokota1997-10-263-105/+444
| | | | | | | | | | | | | | | screen size was changed while the screen saver was inactive. Adjust the positions of the daemon and the text and clip them accordingly each time. - Don't call set_border() too often. Some video chip may produce flicker. Pointed out by tony@dell.com - Don't fill the entire screen with blank char every time the saver is called. Blank only the part of the screen where the daemon and the text was previously printed.
* - 'Beep' support now happens in it's own separate file, so you can messnate1997-10-266-42/+84
| | | | | | | around with different noises for the different events and not have it affect other files. Inspired by: PAO
* use += on cflagsjmg1997-10-263-6/+6
| | | | Submitted-by: Steve Price <sprice@hiwaay.net>
* - Functional changes to PCCARD support.nate1997-10-2612-484/+174
| | | | | | | | | | * Kill individual drivers 'suspend' routines, since there's no simple/safe way to suspend/resume a card w/out going through the complete probe at initialization time. * Default to using the apm_pccard_resume sysctl code, which basically pretends the card was removed, and then re-inserted. Suspend/resume is now 'emulated' with a fake insert/removal. (Hence we no longer need the driver-specific suspend routines.)
* - Do a bunch of gratuitous changes intended to make the code easier tonate1997-10-2632-937/+932
| | | | | | | | | | | | follow. * Rename/reorder all of the pccard structures, change many of the member names to be descriptive, and follow more closely other 'bus' drivers naming schemes. * Rename a bunch of parameter and local variable names to be more consistant in the code. * Renamed the PCCARD 'crd' device to be the 'card' device * KNF and make the code consistant where it was obvious. * ifdef'd out some unused code
* - Call 'callout_handle_init' on the two timeout channels after they arenate1997-10-261-0/+2
| | | | created in the new slot controller structure.
* Cosmetic (no functional changes):brian1997-10-2674-1295/+1238
| | | | | | | | | | | | | | | o Add missing $Id$s o Move extern decls from .c -> .h files o Staticize o Remove #includes from .h files o style(9)ify includes o bcopy -> memcpy bzero -> memset bcmp -> memcmp index -> strchr rindex -> strrchr o Move timeout.h -> timer.h (making it consistent w/ timer.c) o Add -Wmissing-prototypes
* Change L_SET to SEEK_SET for POSIX compliance.jdp1997-10-261-1/+1
| | | | Submitted by: Dean Gaudet <dgaudet@arctic.org>
* - KNF the PCI stuff, no functional changes.nate1997-10-251-20/+24
|
* Merge changes from vendor branch.wollman1997-10-256-306/+303
|
* This commit was generated by cvs2svn to compensate for changes in r30708,wollman1997-10-251-15/+47
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * New version of the timezone database (1997i) from Arthur Olson.wollman1997-10-2510-329/+364
| | | | | | | | Obtained from: Arthur David Olson <ado@elsie.nci.nih.gov>
| * Latest timezone data file update. Changes are principallywollman1997-01-025-30/+95
| | | | | | | | | | | | editorial in nature; no new zones. Obtained from: Arthur David Olson, ado@elsie.nci.nih.gov
* | Recognize even more of the Znyx 314 cards.phk1997-10-252-4/+4
| |
* | Fix typo in startup menu.jkh1997-10-253-6/+6
| | | | | | | | Submitted by: max
* | Somehow an error crept in during the previous commit.dyson1997-10-252-16/+4
| |
* | Support garbage collecting the pmap pv entries. The management doesn'tdyson1997-10-253-5/+117
| | | | | | | | | | happen until the system would have nearly failed anyway, so no signficant overhead is added. This helps large systems with lots of processes.
* | Decrease the initial allocation for the zone allocations.dyson1997-10-244-10/+10
| |
* | sleep => nointr_sleepbrian1997-10-246-22/+20
| | | | | | | | | | | | usleep => nointr_usleep (not just a #define) Already done by: ache
* | (Null commit - the previous commit blew up in my face).markm1997-10-240-0/+0
| | | | | | | | | | | | Link this against -lcrypt. In the case where a user does not have a ticket available on the server, this may cause chunks to be blown when the local kinit does not find crypt(3).
* | Link this against -lcrypt. In the case where the user has no key availablemarkm1997-10-241-2/+2
| | | | | | | | | | on the keyserver, the local kinit will blow chunks when it tries a crypt(3) and finds it unavailable.
* | Make this part of the 'krb' distribution if it is being built as themarkm1997-10-241-0/+1
| | | | | | | | Kerberised version.
OpenPOWER on IntegriCloud