Andrew Thompson
945a92c6be
Add myself to the calendar.
...
Approved by: bms (mentor)
2005-05-26 03:21:16 +00:00
Alexander Leidinger
2e937dd6ee
Add a note how to use nextboot(8) to test a kernel only once.
...
Approved by: mentor (joerg)
Discussed with: imp
2005-05-25 21:03:13 +00:00
Paul Saab
808f11b768
This is conform with the terminology in
...
M.Mathis and J.Mahdavi,
"Forward Acknowledgement: Refining TCP Congestion Control"
SIGCOMM'96, August 1996.
Submitted by: Noritoshi Demizu, Raja Mukerji
2005-05-25 17:55:27 +00:00
Jens Schweikhardt
cf27ba88ea
Looking just at Makefiles was slightly too narrow to catch all
...
"inofficial" declarations of maintainership. Grep all plain files,
and insert the actual command the list was generated with, so
future updates avoid that pitfall.
Removed sheldonh@ who just released his maintainership of ntp/doc
after I informed him of this effort.
2005-05-25 17:37:57 +00:00
Sheldon Hearn
ff7f0e8636
Release maintainership. More ambitious minds have plans for the ntp
...
docs. Last I heard, Harlan Stenn was considering using FreeBSD's
pages as a starting point for the ISC NTP distribution's own pages.
If that happens, everyone wins and these can go away, to be replaced
by imported versions in contrib/ntp.
2005-05-25 16:30:43 +00:00
Hartmut Brandt
0eabc7bf8f
Under certain conditions the condition parser would go one past end of
...
the string. Until now this caused no harm, because the buffer code used
to tack two NULs onto buffers. With the new, soon to come, parsing code
this isn't the case anymore in all cases, so fix this.
2005-05-25 16:06:14 +00:00
Pawel Jakub Dawidek
59ddf345d5
After provider creation!!
2005-05-25 15:54:17 +00:00
Christian Brueffer
d8a4b9c059
Document support for some Dell PERC adapters.
...
Submitted by: Muthu_T@Dell.com
MFC after: 3 days
2005-05-25 15:35:31 +00:00
Peter Edwards
45778b37b2
Separate out address-detaching part of if_detach into if_purgeaddrs,
...
so if_tap doesn't need to rely on locally-rolled code to do same.
The observable symptom of if_tap's bzero'ing the address details
was a crash in "ifconfig tap0" after an if_tap device was closed.
Reported By: Matti Saarinen (mjsaarin at cc dot helsinki dot fi)
2005-05-25 13:52:03 +00:00
Olivier Houchard
08a94fbcf9
Remove bits specific to CPUs we won't support (< armv4).
2005-05-25 13:46:32 +00:00
Olivier Houchard
a0e94dd924
Increase the refresh rate.
2005-05-25 13:44:55 +00:00
Hartmut Brandt
07d9fa4c2e
Add a missing comma which prevents compilation with debugging enabled.
...
Spotted by: Donatas <donatas@lrtc.net>
2005-05-25 13:33:58 +00:00
Pawel Jakub Dawidek
0f2bbe5ba4
- Call root_mount_rel() when provider IS created, not earlier.
...
This should close the race observed by Daniel Eriksson.
- Remove redundant wakeup().
2005-05-25 13:10:04 +00:00
Yoshihiro Takahashi
6ff766dcdf
MFi386: Add ReiserFS
2005-05-25 12:32:06 +00:00
Hartmut Brandt
09907cdf46
No need to specify the include subdirectory. During buildworld the
...
correct files are included from a temp. include directory.
Explained by: ru
2005-05-25 12:04:44 +00:00
Hartmut Brandt
e6ebcf9203
This commit was generated by cvs2svn to compensate for changes in r146611,
...
which included commits to RCS files with non-trunk default branches.
2005-05-25 12:03:26 +00:00
Hartmut Brandt
078b57e43c
Apply vendor patch: include the header files from the canonical place.
...
Explained to me by: ru
2005-05-25 12:03:26 +00:00
Hartmut Brandt
92fd12db24
This commit was generated by cvs2svn to compensate for changes in r146609,
...
which included commits to RCS files with non-trunk default branches.
2005-05-25 12:00:03 +00:00
Hartmut Brandt
9ed6112d51
Apply a vendor patch: silence gcc on arm (alignent when casting pointer).
...
Submitted by: Olivier Houchard <cognet@ci0.org>
2005-05-25 12:00:03 +00:00
Hartmut Brandt
691a610b4d
Document why there is a dependency of certain object files from the
...
Makefile.
Requested by: ru
2005-05-25 08:46:31 +00:00
Ruslan Ermilov
522c85f5ba
Fix order (I introduced some time ago) broken in previous revision.
2005-05-25 07:31:05 +00:00
Marcel Moolenaar
6fbeb2e223
For ISA DMA maps, the chipsets scatter/gather feature is used. As
...
such, the segments pointer in the DMA tag will always be NULL. In
bus_dmamap_load(), temporarily point the segments pointer in the
DMA tag to a local variable so that we don't dereference a NULL
pointer. Reset the segments pointer to NULL after calling the
callback function with it.
PR: alpha/30486
MFC after: 1 week
2005-05-25 07:25:12 +00:00
Olivier Houchard
5b45c9f2a1
MFp4: Setup arm9 to write back by default.
...
Obtained from: NetBSD
2005-05-24 23:57:22 +00:00
Olivier Houchard
ef6f667f2e
Remove kcopy(), we don't use it.
2005-05-24 23:55:09 +00:00
John-Mark Gurney
b633f50dd8
make stat return an zero'd struct, and be a FIFO again... This is only
...
to fix libc_r since it requires stat to close fd's, and so commented in
the code...
PR: threads/75795
Reviewed by: ps
MFC after: 1 week
2005-05-24 23:42:50 +00:00
Christian S.J. Peron
701fabc74b
If sysctlbyname fails for kernel related reasons, tag the errno
...
string to the end of the error message. I think we used errx()
there when we really wanted an err().
MFC after: 1 week
2005-05-24 23:42:09 +00:00
Maxime Henrion
ab19e37ab0
Only build mount_reiserfs(8) on i386, it exists only there for now.
...
Spotted by: ru
2005-05-24 23:06:10 +00:00
Olivier Houchard
ad0557149f
We need to decrease p->p_lock after vm_fault() has been called.
2005-05-24 23:06:02 +00:00
Olivier Houchard
47b3d09bb0
Correctly setup the UND stack in cpu_set_upcall(), and the trapframe in
...
cpu_thread_setup(), as done in cpu_fork().
2005-05-24 23:05:26 +00:00
Olivier Houchard
77f30ffff8
Don't set the default of kern.fallback_elf_brand to FreeBSD for arm, as
...
binutils now do the job for us
2005-05-24 22:21:44 +00:00
Olivier Houchard
15ba408fd7
- Try to avoid calling malloc() in bus_dmamap_create() and bus_dmamem_alloc()
...
for the dmamap by using static dmamaps.
- Don't do anything for BUS_DMASYNC_PREREAD and BUS_DMASYNC_POSTWRITE in
bus_dmamap_sync(), it's not needed anymore.
2005-05-24 22:10:35 +00:00
Olivier Houchard
f1f49518d4
Write back affected pages in pmap_qremove() as well. This removes the need
...
to change the DACR when switching to a kernel thread, thus making
userland thread => kernel thread => same userland thread switch cheaper by
totally avoiding data cache and TLB invalidation.
2005-05-24 21:47:10 +00:00
Olivier Houchard
04e48248ca
Use a more sane value for HZ.
2005-05-24 21:45:26 +00:00
Olivier Houchard
0f18d3256d
Use asm versions of in_cksum() and friends.
2005-05-24 21:44:34 +00:00
Peter Grehan
530d1c7646
Since the BAT mapping was removed a long time back, it can't
...
be assumed that modules are contiguous in memory (they're not)
so don't blindly __syncicache start/end. In fact, don't bother
syncing the icache for modules since the kernel will do it after
fixing up relocations.
This fixes the trap when loading modules at boot time.
Reported by: orlando at break dot net
2005-05-24 21:43:49 +00:00
Olivier Houchard
fdc05f7913
Asm version of bswap16().
...
Obtained from: NetBSD
2005-05-24 21:43:16 +00:00
Olivier Houchard
fa7e20fdd4
Make sure we clean the RAS start address once we're done.
...
This fixes the random segfaults which occurs at high interrupts rate.
2005-05-24 21:42:31 +00:00
Olivier Houchard
6ffb8d33c7
arm defaults to unsigned char as well.
2005-05-24 21:25:32 +00:00
Olivier Houchard
7b2b007e8c
Use -march=armv5te for Xscale.
2005-05-24 21:24:40 +00:00
Olivier Houchard
0f470b07d2
Don't set the tuner type to TUNER_MT2032 if BKTR_OVERRIDE_TUNER is defined or
...
if hw.bt848.tuner has been set, so that we can force the tuner.
2005-05-24 21:12:49 +00:00
Olivier Houchard
c9d9582d9f
Fix one more misuse of u_long when uint32_t is actually meant.
...
Submitted by: oliver
MFC after: 3 days
2005-05-24 20:42:08 +00:00
Jens Schweikhardt
5d2e2fcd18
Update (reduce) the list of committers with MAINTAINER= lines in Makefiles.
2005-05-24 18:54:07 +00:00
Maxime Henrion
32b37b0ea5
- Move the REISERFS option in the MD NOTES file for i386, it doesn't
...
exist on other architectures yet.
- While I'm here, fix the formatting of the options line. The keyword
"options" should be followed by a space and then a tab, not 2 tabs.
2005-05-24 18:31:34 +00:00
Paul Saab
473dd55f2e
Copyout to userland if kern_sigaction succeeds
2005-05-24 17:52:14 +00:00
Damien Bergamini
0b090f4153
Add new ral(4) and ural(4) drivers.
...
Approved by: silby (mentor)
2005-05-24 16:48:07 +00:00
Hartmut Brandt
527505d8cb
The caller of Var_Value() should not change the variable value. Make
...
this clear by constifying the return value.
Obtained from: DragonFlyBSD
2005-05-24 16:05:51 +00:00
Hartmut Brandt
19446efc06
Get rid of the third argument to Var_Value() the pointer it pointed
...
to has always been set to NULL for some time now.
Obtained from: DragonFlyBSD
2005-05-24 15:58:35 +00:00
Hartmut Brandt
cda79e4935
Make shell.o dependend on the Makefile just in case someone changes
...
the default shell in the Makefile.
2005-05-24 15:48:10 +00:00
Hartmut Brandt
066694bd51
Bump the warning level to 6.
2005-05-24 15:46:50 +00:00
Hartmut Brandt
8ea7e6722b
Fix a 64-bit warning by casting an int64_t to intmax_t and printing it
...
with %jd.
2005-05-24 15:45:11 +00:00