Tim J. Robbins
5ec3441dd2
Fix some off-by-one errors dealing with limits of server names,
...
usernames, workgroup names and passwords. We can now connect to
servers with 15-character NetBIOS names. (Some versions of Windows
use semi-random 15-char names by default.)
PR: 46902
2003-07-27 11:41:38 +00:00
Tim J. Robbins
93e3ed5ab1
Reserve space for the trailing null byte in the srvname member of
...
struct smb_vc_info.
PR: 46902
2003-07-27 11:36:00 +00:00
Tim J. Robbins
b28e089684
Add the -n maxrec option as an alias for -maxrec for compatibility with
...
System V and consistency with other utilities. Document the new form
instead of the old form in the manual page.
PR: 54661
2003-07-27 10:53:28 +00:00
Maxime Henrion
085f5d6043
Use pmap_zero_page() to zero pages instead of bzero() because
...
they haven't been vm_map_wire()'d yet.
2003-07-27 10:41:33 +00:00
David Xu
41282b992f
Simplify sigwait code a bit by using a waitset and removing oldsigmask.
...
Reviewed by: deischen
2003-07-27 06:46:34 +00:00
Alan Cox
9c65e7a336
Allow vm_object_reference() on kernel_object without Giant.
2003-07-27 05:43:58 +00:00
Robert Drehmel
c39be346e3
Changed the type of the variable `qidx' from u_int8_t to int,
...
mainly to quiet a warning emitted by GCC 3.3 about comparing
a variable to a value which is larger than the former can hold.
The value was checked to make sure the `np->squeue' array is
not accessed behind its boundary.
This worked due to possibly accidental truncation when
(np->squeueput + 1) was larger than or equal to MAX_START (256)
when it was assigned to `qidx'.
`qidx' is used to hold the next position in the start queue
for an insertion. The new type was chosen because some other
code in the function ncr_freeze_devq() also uses plain integers
to hold those indices.
Wrapped the line after the closing parenthesis of an `if'
condition.
2003-07-27 00:13:49 +00:00
Gary Jennejohn
810bf55afe
Use M_WAITOK instead of M_WAIT in sppp_attach().
2003-07-26 21:58:06 +00:00
Alan Cox
17d89a1f67
Acquire Giant rather than asserting it is held in contigmalloc(). This is
...
a prerequisite to removing further uses of Giant from UMA.
2003-07-26 21:48:46 +00:00
Martin Blapp
fa7235b784
Add notice about the local change in r1.25
2003-07-26 21:29:28 +00:00
John Polstra
c009dcfdc2
Fix a couple of bugs in the resume handler. Don't call the if_init
...
function unless the device is configured up. Without this fix, the
device ends up in the RUNNING state even though it is configured down.
Also, check the RUNNING flag before calling the if_start function, in
case the if_init function failed for one reason or another.
2003-07-26 20:54:57 +00:00
Mike Makonnen
a3c2b42158
Define the stop command to do nothing when only a specific
...
interface is to be stopped. In this case we don't want to go
beyond releasing the lease.
2003-07-26 18:58:46 +00:00
Mike Makonnen
312ba8d00a
When stopping a dhcp interface, don't just release the lease on
...
the address, also kill the dhclient process. Instead of doing the
release in the stop command, move it to the precmd stage and allow
rc.subr(8) to automatically kill the dhclient process by leaving the
stop command undefined.
Noticed by: mbr
2003-07-26 18:50:53 +00:00
Warner Losh
b44e6aad52
Add Socket Communications Low Power 10/100 CF Ethernet card.
...
Obtained from: NetBSD (information, not code)
2003-07-26 17:52:09 +00:00
Warner Losh
c1d9e7fff1
Sync to 1.61 of pccarddevs
2003-07-26 17:46:43 +00:00
Warner Losh
5a344705e6
MFNetBSD:
...
1.183: gmcgarry; Add Sharp PALDIO 611S
1.184: martin; Socket LP 10/100 CF
Obtained from: NetBSD
2003-07-26 17:45:45 +00:00
Maxim Konovalov
fc60875325
o Fix usage(): remove '-l', add missed '-f', sort.
2003-07-26 15:29:10 +00:00
Hartmut Brandt
31661c3803
Inline a function that gcc refused to inline. This function was used
...
only in one place and it just served as semantic sugar.
2003-07-26 14:57:26 +00:00
Hartmut Brandt
cd7a4fa6eb
Silence a gcc-warning. Do this by inlining the macro-call. This is
...
not very nice - the compiler should just silently optimize away the
unused else clause.
2003-07-26 14:20:37 +00:00
Simon L. B. Nielsen
5445ea75ce
The /rescue system is now enabled by default again, so remove note
...
saying that it is disabled.
Approved by: ceri (mentor)
2003-07-26 13:04:40 +00:00
David Xu
4160fed551
Set mc_len to sizeof(mcontext_t), otherwise it is an invalid context.
2003-07-26 12:58:28 +00:00
Simon L. B. Nielsen
4a52a070f8
Remove references to the '-l' option in synopsis. The rest of the
...
description of this option was removed in v. 1.22.
PR: docs/54880
Submitted by: Lukas Ertl <l.ertl@univie.ac.at>
Approved by: ceri (mentor)
2003-07-26 12:57:56 +00:00
Simon L. B. Nielsen
d54277a793
Minor mdoc(7) cleanup, based on the PR below.
...
PR: docs/54826
Submitted by: Lukas Ertl <l.ertl@univie.ac.at>
Reviewed by: ru
Approved by: ceri (mentor)
2003-07-26 12:41:44 +00:00
Pierre Beyssac
c6df222c98
Fix "write from stdin".
...
Reviewed by: sos
MFC after: 1 week
2003-07-26 12:14:58 +00:00
Bruce Evans
e139a45198
Fixed wrong function names in the error message that was translated to
...
C in rev.1.32 so that it doesn't take 2 commits for all branches to fix
this message.
2003-07-26 11:53:40 +00:00
Marcel Moolenaar
e2fe99a2e0
Remove prototype of ia64_pa_access(). The function has been moved to
...
mem.c where it's been made static.
2003-07-26 10:13:30 +00:00
Takanori Watanabe
62d4c42b21
Enable wake up GPE before shutdown, not only for sleeping.
2003-07-26 09:54:17 +00:00
Marcel Moolenaar
4f373ec187
Avoid using __aligned(16). Instead define the jmp_buf in terms of
...
long doubles. This gives us 16-byte alignment. Add a CTASSERT for
the size of the jmp_buf to detect ABI breakages.
2003-07-26 08:03:43 +00:00
Poul-Henning Kamp
a8d43c90af
Add a "int fd" argument to VOP_OPEN() which in the future will
...
contain the filedescriptor number on opens from userland.
The index is used rather than a "struct file *" since it conveys a bit
more information, which may be useful to in particular fdescfs and /dev/fd/*
For now pass -1 all over the place.
2003-07-26 07:32:23 +00:00
Marcel Moolenaar
dc539f3ee0
Unbreak ia64 builds now -Werror is enabled again. Avoid obsolete
...
memory operand construct.
2003-07-26 07:23:25 +00:00
Scott Long
c43cad1ac1
Guard against MLEN growing larger than a uint8_t due to MSIZE grwoing to a
...
value of 512 in LINT. This keeps gcc from complaining.
2003-07-26 07:23:24 +00:00
Scott Long
2272d4a4cb
Bah, I go and get all preachy, and then commit from the wrong branch. Revert
...
the use of '-j8'.
Apologies to: ru
2003-07-26 06:47:40 +00:00
Scott Long
1263297ba1
Fix the release build with a forgotten '-f'.
2003-07-26 05:57:52 +00:00
Peter Wemm
db75019614
Fixes for 64 bit cleanliness. The length arg to sysctl is a pointer to
...
size_t not int.
Reviewed by: bp
2003-07-26 04:03:18 +00:00
Peter Wemm
26c4b7deaa
Use #include <string.h> rather than <strings.h> so that the strdup()
...
prototype gets brought into scope. This is a big deal for 64 bit
systems where the default return value of 'int' is != pointer.
Reviewed by: bp
2003-07-26 04:02:22 +00:00
Alan Cox
0c1a133f56
Gulp ... call kmem_malloc() without Giant.
2003-07-26 03:55:32 +00:00
Peter Wemm
abe9725e8c
Fix some recently introduced warnings. 'Declaration does not declare
...
anything' etc.
2003-07-26 03:47:56 +00:00
Peter Wemm
31a4d2f45a
Turn -Werror back on again. I've tested with/without
...
invariants/witness/etc on i386, sparc64, amd64 and alpha for GENERIC.
Lint probably still needs fixing, as do a couple of other drivers
that have broken recently and not been noticed.
2003-07-26 03:46:39 +00:00
David Xu
36144f1e6e
Fix typo.
2003-07-26 02:36:50 +00:00
Peter Wemm
a92a214401
Change the inline limit switch to something that exists in gcc-3.2.
...
Unfortunately, it has different units.
2003-07-26 02:27:50 +00:00
Tim J. Robbins
c8db6734e0
Revise and improve ntfs_subr.c 1.30: read only a single cluster at a time
...
in ntfs_writentvattr_plain and ntfs_readntvattr_plain, and purge the boot
block from the buffer cache if isn't exactly one cluster long. These two
changes work around the same buffer cache bug that ntfs_subr.c 1.30 tried
to, but in a different way. This may decrease throughput by reading smaller
amounts of data from the disk at a time, but may increase it by avoiding
bogus writes of clean buffers.
Problem (re)reported by Karel J. Bosschaart on -current.
2003-07-26 02:21:49 +00:00
Marcel Moolenaar
938b878e45
Revert previous commit. We don't use setjmp()/longjmp() for context
...
switching anymore, so there's no need to save and restore GP. This
change breaks threaded applications linked against libc_r. Pull the
tier 2 card again: relink. This will link against libthr instead.
2003-07-25 22:36:48 +00:00
Alan Cox
18e8d4e79c
revision 1.51 of vm/uma_core.c modified uma_large_malloc() to acquire
...
Giant when needed.
2003-07-25 22:26:43 +00:00
Dag-Erling Smørgrav
b1e91d01fb
powerpc isn't tinderbox-ready yet.
2003-07-25 22:17:28 +00:00
David E. O'Brien
56ae44c5df
Use __FBSDID().
...
Brought to you by: a boring talk at Ottawa Linux Symposium
2003-07-25 21:19:19 +00:00
David E. O'Brien
12ea2cfe2e
Use __FBSDID().
...
Brought to you by: a boring talk at OLS
2003-07-25 21:10:19 +00:00
Maxime Henrion
b9ff8db1be
Add support for the M_ZERO flag to contigmalloc().
...
Reviewed by: jeff
2003-07-25 21:02:25 +00:00
Peter Wemm
91ae85f3c6
Make this 64 bit clean. Use size_t for sysctl() length pointer args.
2003-07-25 20:56:57 +00:00
Bill Paul
0304f1c01e
Remove alpha vtophys() hack from if_bgereg.h and clean up unneeded
...
#includes formerly required to pull in vtophys support, since we
don't need them anymore.
2003-07-25 20:33:43 +00:00
Bill Paul
f41ac2be93
Convert bge(4) to use busdma. I have not tested this on anything
...
besides x86 yet since I don't have access to a non-x86 FreeBSD
box at the moment. Volunteers welcome.
2003-07-25 19:42:44 +00:00