dwmalone2005-11-13 20:30:13 UTC
FreeBSD src repository
Modified files:
usr.bin/col col.c
Log:
Avoid shadowing a local scratch variable,
Revision ChangesPath
1.20 +2 -2 src/usr.bin/col/col.c
___
cvs-all@fre
dwmalone2005-11-13 20:37:25 UTC
FreeBSD src repository
Modified files:
usr.bin/indent indent.c indent_globs.h io.c
Log:
Declare find_err in indent_globs.h where the other shared variables
live rather than listing it as an extern in indent.c.
Revision ChangesPath
dwmalone2005-11-13 20:50:17 UTC
FreeBSD src repository
Modified files:
usr.bin/mt mt.c
Log:
Const poision, deregister and use ANSI definitions.
Revision ChangesPath
1.37 +20 -23src/usr.bin/mt/mt.c
___
cvs-
dwmalone2005-11-13 21:03:56 UTC
FreeBSD src repository
Modified files:
usr.bin/rlogin rlogin.c
Log:
len and len2 work better as size_t
Revision ChangesPath
1.40 +2 -1 src/usr.bin/rlogin/rlogin.c
___
cvs-all@f
dwmalone2005-11-13 21:17:25 UTC
FreeBSD src repository
Modified files:
usr.bin/rpcgen rpc_clntout.c rpc_cout.c rpc_hout.c
rpc_main.c rpc_parse.c rpc_parse.h
rpc_sample.c rpc_scan.c rpc_scan.h
rpc_svcou
On Mon, Nov 14, 2005 at 03:11:25AM +, Craig Rodrigues wrote:
> Modified files:
> usr.bin/rpcgen rpc_main.c
> Log:
> Eliminate build breakage due to warnings about const.
Hmm, drat - I tought I'd tested this properly. I knew there was one
warning left, but I hadn't fixed it bec
On Tue, Dec 13, 2005 at 05:59:07PM +0100, Max Laier wrote:
> In Basel we talked about a general interface for dumping "interesting" packets
> in order to debug tcp problems etc. ... I am certainly interested in
> discussing this further and maybe getting some universal API for it into the
> kerne
dwmalone2006-02-13 22:09:26 UTC
FreeBSD src repository
Modified files:
usr.bin/column column.c
Log:
The change to make column use roundup(x, TAB) rounded things to the
current tab, however the code it replaced wanted to round to the
next TAB. Consequently things like th
dwmalone2006-02-15 14:48:59 UTC
FreeBSD src repository
Modified files:
sys/i386/i386identcpu.c
sys/amd64/amd64 identcpu.c
Log:
It seems bit 5 of cpu_feature2 is the VMX (Virtual Machine Extensions)
bit. While I'm here, delete a comment that was cut and past fr
dwmalone2006-02-23 11:34:45 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
usr.bin/column column.c
Log:
MFC: Make column roundup to the next tab.
Approved by:re (scottl)
Revision ChangesPath
1.14.2.1 +3 -3 src/usr.bin/column/
dwmalone2006-02-23 15:03:42 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/i386/i386identcpu.c
sys/amd64/amd64 identcpu.c
Log:
MFC: Print Virtual Machine Extensions feature and remove stale comment.
Approved by: re (scottl)
Re
dwmalone2006-02-25 23:50:15 UTC
FreeBSD src repository
Modified files:
usr.sbin/quotquot.c
Log:
The quot command expected all inodes contents to be valid, however
on UFS2 inodes are initialised as they are needed, rather than at
newfs time. When quot encountered these
dwmalone2006-02-27 19:13:47 UTC
FreeBSD src repository
Modified files:
sbin/dmesg dmesg.c
Log:
Avoid moving onto a new line while testing if there is a syslog priority
in the buffer. This isn't exactly the patch that Stephen submitted, but
is based on one of his sug
dwmalone2006-03-04 16:56:56 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_5)
usr.sbin/quotquot.c
Log:
MFC: Make quot skip unallocated inodes.
Approved by:re (scottl)
Revision ChangesPath
1.22.6.1 +31 -3 src/usr.sbin/quot/quot.
dwmalone2006-03-04 16:59:09 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
usr.sbin/quotquot.c
Log:
MFC: Make quot skip unallocated inodes.
Approved by:re (scottl)
Revision ChangesPath
1.23.2.1 +31 -3 src/usr.sbin/quot/quot.
dwmalone2006-03-04 20:47:19 UTC
FreeBSD src repository
Modified files:
sys/security/mac_bsdextended mac_bsdextended.c
Log:
Create a mac_bsdextended_check_vp function that takes a cred, a
vnode and a mode and checks if a given access mode is permitted.
This centralises the mac
dwmalone2006-03-19 11:48:49 UTC
FreeBSD src repository
Modified files:
sys/netinet in_pcb.h
sys/netinet6 in6_pcb.c
Log:
Make net.inet.ip.portrange.reservedhigh and
net.inet.ip.portrange.reservedlow apply to IPv6 aswell as IPv4.
We could have made new
dwmalone2006-03-28 12:51:23 UTC
FreeBSD src repository
Modified files:
sys/netinet6 in6.h
Log:
This comment on various IPPORT_ defines was copied from in.h and
probably never fully applied to IPv6. Over time it has become more
stale, so replace it with something more
On Fri, Mar 31, 2006 at 10:32:13AM +, Robert Watson wrote:
> The trick will be balancing flexibility with complexity for the
> administrator. -s foopercent is easy for an administrator to understand,
> and conditional logging of message types based on percentage is not. I can
> imagine a us
dwmalone2006-04-11 14:45:42 UTC
FreeBSD src repository
Modified files:
sbin/dumptraverse.c
Log:
Dump keeps a bitmap of the state of various inodes, which is sized
to match the number of inodes on the disk. If we find a directory
entry with a crazy inode number in
dwmalone2006-04-17 18:35:58 UTC
FreeBSD src repository
Modified files:
usr.sbin/inetd Makefile builtins.c
Log:
Port 37 (RFC 738) style times are supposed to be a 32 bit time since
1900 in network byte order. Use a uint32_t to calculate and send
the time, so that we don'
dwmalone2006-04-17 19:52:00 UTC
FreeBSD src repository
Modified files:
usr.sbin/inetd Makefile
Log:
Back out a Makefile change that accidently snook in.
Revision ChangesPath
1.33 +1 -1 src/usr.sbin/inetd/Makefile
___
dwmalone2006-04-17 19:55:25 UTC
FreeBSD src repository
Modified files:
usr.sbin/inetd builtins.c
Log:
Update a couple of comments relating to RFCs.
Revision ChangesPath
1.45 +5 -2 src/usr.sbin/inetd/builtins.c
__
dwmalone2006-04-23 17:06:18 UTC
FreeBSD src repository
Modified files:
lib/libugidfwlibugidfw.3 ugidfw.c ugidfw.h
sys/security/mac_bsdextended mac_bsdextended.c
mac_bsdextended.h
tools/regression/mac/mac_bsdextended test_ugidfw.c
dwmalone2006-05-02 18:31:02 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6_1)
usr.sbin/inetd builtins.c
Log:
MFC: v1.45, v1.44
Make port 37 time work on machines with 64 bit longs. Also merge a couple
of updates to comments.
Approved by:
dwmalone2006-05-02 18:31:38 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
usr.sbin/inetd builtins.c
Log:
MFC: v1.45, v1.44
Make port 37 time work on machines with 64 bit longs. Also merge a couple
of updates to comments.
Approved by:re
dwmalone2006-05-02 18:32:08 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_5)
usr.sbin/inetd builtins.c
Log:
MFC: v1.45, v1.44
Make port 37 time work on machines with 64 bit longs. Also merge a couple
of updates to comments.
Approved by:re
dwmalone2006-05-02 18:32:44 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_4)
usr.sbin/inetd builtins.c
Log:
MFC: v1.45, v1.44
Make port 37 time work on machines with 64 bit longs. Also merge a couple
of updates to comments.
Revision Changes
dwmalone2006-05-02 19:07:57 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6_1)
sbin/dumptraverse.c
Log:
MFC: 1.37
Stop dump reading off the end of its inode bitmaps when it finds an
invalid inode number in a directory entry.
Approved by
dwmalone2006-05-02 19:08:36 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sbin/dumptraverse.c
Log:
MFC: 1.37
Stop dump reading off the end of its inode bitmaps when it finds an
invalid inode number in a directory entry.
Approved by:
dwmalone2006-05-02 19:08:58 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_5)
sbin/dumptraverse.c
Log:
MFC: 1.37
Stop dump reading off the end of its inode bitmaps when it finds an
invalid inode number in a directory entry.
Approved by:
dwmalone2006-05-02 19:09:22 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_4)
sbin/dumptraverse.c
Log:
MFC: 1.37
Stop dump reading off the end of its inode bitmaps when it finds an
invalid inode number in a directory entry.
Revision Cha
On Sun, May 14, 2006 at 11:42:24PM +, Max Laier wrote:
> Use only lower 64bit of src/dest (and src/dest port) for hashing of IPv6
> connections and get rid of the flow_id as it is not guaranteed to be stable
> some (most?) current implementations seem to just zero it out.
I had a look at
> Interesting - thanks for the pointer. Unless every stack DTRT we can't
> use the flow_id, though - or we break otherwise legal connections. In the
> given case we would open a state with SYN+flow_id and got a reply SYNACK+0
> which wouldn't hash the same as the SYN we sent out. No matching sta
dwmalone2006-05-28 20:00:02 UTC
FreeBSD src repository
Modified files:
sys/net bpf_filter.c
Log:
Avoid unwanted sign extension of indexed byte load in bpf code.
PR: 89748
Submitted by: Guy Harris <[EMAIL PROTECTED]>
Obtained from: NetBSD via O
dwmalone2006-08-21 12:26:30 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_5)
sbin/dmesg dmesg.c
Log:
Sync with -current:
1.28: Avoid moving onto a new line while testing syslog prios.
1.27: WARNS=6 cleanup.
1.26: Print a usage message if a n
dwmalone2006-08-21 12:27:47 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_5)
sys/dev/acpica acpi_quirks
Log:
MFC: 1.6 quirk for a motherboard whose acpi timer runs too fast.
Revision ChangesPath
1.3.2.3 +8 -0 src/sys/dev/acpica/acpi_qu
dwmalone2006-08-21 12:28:58 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_5)
sys/net bpf.c
Log:
MFC: 1.170 Give the same timestamp for each packet to all BPF listeners.
RevisionChangesPath
1.133.2.11 +35 -8 src/sys/net/bpf.c
__
dwmalone2006-08-21 12:29:31 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_5)
sys/net bpf_filter.c
Log:
MFC: 1.27 Avoid unwanted sign extension of indexed byte load in bpf code.
Revision ChangesPath
1.22.2.2 +2 -2 src/sys/net/bpf_
dwmalone2006-08-21 12:34:03 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_5)
sys/netinet6 in6.h in6_pcb.c
sys/netinet in_pcb.h
Log:
MFC: Make net.inet.ip.portrange.reservedhigh and
net.inet.ip.portrange.reservedlow apply to IPv6 aswell
dwmalone2006-08-21 12:36:24 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_5)
sys/netinet tcp_input.c
Log:
MFC: 1.300 When we receive an out-of-window SYN for an "ESTABLISHED"
connection, ACK the SYN as required by RFC793.
RevisionChanges
dwmalone2006-08-21 12:42:26 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_4)
sys/net bpf.c
Log:
MFC: 1.170 Give the same timestamp for each packet to all BPF listeners.
Revision ChangesPath
1.59.2.15 +26 -13src/sys/net/bpf.c
dwmalone2006-08-21 12:42:52 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_4)
sys/net bpf_filter.c
Log:
MFC: 1.27 Avoid unwanted sign extension of indexed byte load in bpf code.
Revision ChangesPath
1.17.2.1 +3 -3 src/sys/net/bpf_
dwmalone2006-08-21 12:43:24 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_4)
sys/netinet tcp_input.c
Log:
MFC: 1.300 When we receive an out-of-window SYN for an "ESTABLISHED"
connection, ACK the SYN as required by RFC793.
RevisionChanges
dwmalone2006-08-21 15:59:48 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
lib/libugidfwlibugidfw.3 ugidfw.c ugidfw.h
sys/security/mac_bsdextended mac_bsdextended.c
mac_bsdextended.h
tools/regression/mac/mac_bsd
dwmalone2006-08-23 14:29:18 UTC
FreeBSD src repository
Modified files:
sbin/ipfwipfw2.c
Log:
A pipe bandwidth of 10MBits/s should probably
be understood as10Mbits/s not 10MBytes/s.
Submitted by: Gavin McCullagh <[EMAIL PROTECTED]>
MFC after: 1 week
dwmalone2006-08-31 16:26:01 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sbin/ipfwipfw2.c
Log:
MFC 1.96: Treat "Bits" as bits not bytes.
MFC 1.95: Fix me6 keyword by getting parens in the right place.
Revision ChangesPath
1.76.2.
On Wed, Sep 20, 2006 at 05:26:26PM +1000, Peter Jeremy wrote:
> In addition, the code necessary to correctly re-insert the VLAN tag
> (to provide a fully valid mbuf chain for further processing) will be
> larger and slower than the code necessary to kludge a mbuf that is
> adequate for bpf_filter()
> >Putting ethernet specific code in bpf_* feels like a bad idea.
> Is this any worse than having ethernet specific code in the mbuf header?
Well, I didn't really like the sound of that either, but I was too
polite to mention it ;-)
> >(It's interesting to note that as ethernet cards introduce m
dwmalone2006-10-15 17:34:51 UTC
FreeBSD src repository
Modified files:
contrib/traceroute traceroute.8 traceroute.c
Log:
Add a -D option to traceroute that prints the differences between
the probe packet we sent and the packet quoted by the ICMP response.
Can be useful for
dwmalone2006-10-15 17:44:49 UTC
FreeBSD src repository
Modified files:
contrib/traceroute traceroute.8 traceroute.c
Log:
Make it so that the synopsis and usage message almost agree.
MFC after: 3 weeks
Revision ChangesPath
1.16 +1 -1 src/contrib/t
> Sounds like a nice feature! What about turning it on by default?
It's probably a bit chatty to have on by default (as there are always
differences to print - usually just the IP checksum and the TTL).
David.
___
cvs-all@freebsd.org mailing lis
dwmalone2006-06-13 14:59:07 UTC
FreeBSD src repository
Modified files:
contrib/traceroute traceroute.8 traceroute.c
Log:
Make traceroute decode all the ICMP unreachable messages defined
in http://www.iana.org/assignments/icmp-parameters. Thankfully
IANA's list aggrees with
dwmalone2006-06-16 20:29:05 UTC
FreeBSD src repository
Modified files:
sys/kern kern_tc.c
Log:
Add a kern.timecounter.tc sysctl tree that contains the mask,
frequency, quality and current value of each available time counter.
At the moment all of these are read
dwmalone2006-06-19 12:33:53 UTC
FreeBSD src repository
Modified files:
sys/netinet tcp_input.c
Log:
When we receive an out-of-window SYN for an "ESTABLISHED" connection,
ACK the SYN as required by RFC793, rather than ignoring it. NetBSD
have had a similar change sinc
On Tue, Jun 27, 2006 at 06:30:49PM +, John Baldwin wrote:
> Log:
> Axe the stackgap macros as the Linux ABIs no longer use the stackgap.
Yay!
David.
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
T
dwmalone2006-07-24 15:42:04 UTC
FreeBSD src repository
Modified files:
sys/net bpf.c
Log:
Rather than calling mircotime() in catchpacket(), make catchpacket()
take a timeval indicating when the packet was captured. Move
microtime() to the calling functions and gr
> Thanks for taking care of this! It is not very desirable for the same
> packet to have different timestamps associated with it across different
> bpf peers. It certainly could cause a problem if people are using
> timestamps to correlate events from different programs on the same system.
Inde
> > libpcap does not need to be modified; it works already for
> > wireless. The fact that the DLT is named DLT_IEEE802_11_RADIO is a
> > bit of a misnomer; it's not entirely 802.11-specific.
> Ah, you mean we just exploit DLT_IEEE802_11_RADIO. Hmm... How about
> processing overhead? Can we sy
> > It sounds to me like a reasonable thing to do would be to pass up
> > a raw version of the timestamp (as returned by the hardware). We'd
> > also pass up the regular microtime() timestamp. You can then do any
> > postprocessing to syncronise timestamps later in userland?
> Nope. In that case,
> I'm not sure I know what you mean by "trivial timecounter", but the
> only reason we don't have a way to deregister a timecounter yet is
> that so far I'm probably the only one who have ever need it :-)
I was thinking about this recently too actually, as I was going to
see how good the 64 bit co
> The first gottcha to look out for is upper/lower half rollover issues,
> if you read it as two 32 bit registers: you need to check if the
> lower part rolled over without the upper part getting updated, or
> the more pathological case: the upper part being updated before
> the lower part rolled v
dwmalone2006-08-18 15:52:57 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
contrib/traceroute traceroute.8 traceroute.c
Log:
Sync with -current: -e option, some typo fixes, new ICMP codes.
Revision ChangesPath
1.11.2.1 +22 -3 src/contrib/t
dwmalone2006-08-18 15:54:14 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sbin/dmesg dmesg.c
Log:
MFC: Avoid changing line while processing syslog prios.
Revision ChangesPath
1.27.2.1 +2 -1 src/sbin/dmesg/dmesg.c
dwmalone2006-08-18 15:55:27 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/net bpf_filter.c
Log:
MFC: Avoid unwanted sign extension of indexed byte load in bpf code.
Revision ChangesPath
1.23.2.1 +2 -2 src/sys/net/bpf_filte
dwmalone2006-08-18 15:58:16 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/net bpf.c
Log:
MFC: Give the same timestamp for each packet to all BPF listeners.
Revision ChangesPath
1.153.2.8 +31 -6 src/sys/net/bpf.c
__
dwmalone2006-08-20 19:28:43 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/netinet in_pcb.h
sys/netinet6 in6.h in6_pcb.c
Log:
MFC: Make net.inet.ip.portrange.reservedhigh and
net.inet.ip.portrange.reservedlow apply to IPv6 aswell
dwmalone2006-08-20 20:10:36 UTC
FreeBSD src repository
Modified files:
sbin/ipfwipfw2.c
Log:
Regigle parens to try and get the intended affect. This should fix people
having trouble with the "me6" keyword. Also, we were using inet_pton on
the wrong variable in one
dwmalone2006-08-21 10:39:13 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/netinet tcp_input.c
Log:
MFC: When we receive an out-of-window SYN for an "ESTABLISHED" connection,
ACK the SYN as required by RFC793.
Revision ChangesPath
dwmalone2008-05-20 10:46:50 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_7)
usr.sbin/traceroute6 traceroute6.8 traceroute6.c
Log:
Sync with current - add the ability to traceroute with no-next-header
packets.
Revision ChangesPath
1.16.2.1 +7 -1
dwmalone2008-05-20 10:51:27 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
usr.sbin/traceroute6 Makefile traceroute6.8 traceroute6.c
Log:
Sync with -current:
- ability to traceroute with packets with no upper layer header.
- clean __P use.
- place e
dwmalone2008-05-20 11:17:18 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_7)
sys/netinet ip_fw2.c
Log:
MFC:
If we are walking the IPv6 header chain and we hit an IPPROTO_NONE
header, then don't try to pullup anything, because there is no next
he
dwmalone2008-05-20 11:17:51 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/netinet ip_fw2.c
Log:
MFC:
If we are walking the IPv6 header chain and we hit an IPPROTO_NONE
header, then don't try to pullup anything, because there is no next
he
dwmalone2008-05-20 11:31:03 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_7)
sbin/ipfwipfw.8 ipfw2.c
sys/netinet ip_dummynet.c
Log:
MFC:
Dummynet has a limit of 100 slots queue size (or 1MB, if you give
the limit in bytes) hard co
dwmalone2008-05-20 11:32:03 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sbin/ipfwipfw.8 ipfw2.c
sys/netinet ip_dummynet.c
Log:
MFC:
Dummynet has a limit of 100 slots queue size (or 1MB, if you give
the limit in bytes) hard co
dwmalone2008-06-04 19:17:13 UTC
FreeBSD src repository
Modified files:
usr.bin/su su.c
Log:
SVN rev 179547 on 2008-06-04 19:16:54Z by dwmalone
Fix a strict aliasing warning - I think it is really telling us
that the way char * and void * pointers may not be store
dwmalone2008-06-04 19:50:46 UTC
FreeBSD src repository
Modified files:
usr.bin/lex ccl.c dfa.c ecs.c gen.c initscan.c misc.c
nfa.c sym.c tblcmp.c
Log:
SVN rev 179549 on 2008-06-04 19:50:34Z by dwmalone
De-register declarations.
Revisio
dwmalone2008-06-08 19:59:15 UTC
FreeBSD src repository
Modified files:
usr.bin/lex flex.skl flexdef.h lex.1 parse.y scan.l
Log:
SVN rev 179657 on 2008-06-08 19:59:15Z by dwmalone
I missed some "register"s in non-dot-C files.
Revision ChangesPath
1.9
dwmalone2008-06-08 21:00:25 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_7)
sbin/restore dirs.c interactive.c tape.c
Log:
SVN rev 179659 on 2008-06-08 21:00:25Z by dwmalone
MFC: Sync restore in RELENG_7 with -current.
Fix remaining nits from
dwmalone2008-06-09 07:53:16 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sbin/restore dirs.c interactive.c main.c restore.8
restore.c restore.h tape.c
Log:
SVN rev 179667 on 2008-06-09 07:53:16Z by dwmalone
MFC: Sync
dwmalone2008-07-07 09:25:49 UTC
FreeBSD src repository
Modified files:
sys/net bpf.c bpf.h
Log:
SVN rev 180337 on 2008-07-07 09:25:49Z by dwmalone
Add a new ioctl for changing the read filter (BIOCSETFNR). This is
just like BIOCSETF but it doesn't drop all the
dwmalone2008-07-07 09:27:02 UTC
FreeBSD src repository
Modified files:
share/man/man4 bpf.4
Log:
SVN rev 180339 on 2008-07-07 09:27:02Z by dwmalone
Update man page for addition of BIOCSETFNR. Subversion didn't want
to commit this at the same time for some reason.
dwmalone2008-07-18 14:44:51 UTC
FreeBSD src repository
Modified files:
sys/boot/forth loader.conf
sys/conf NOTES files options
sys/modules Makefile
Added files:
sys/modules/accf_dns Makefile
sys/netinet accf_dns.c
Log:
SVN
dwmalone2008-07-18 14:46:01 UTC
FreeBSD src repository
Modified files:
share/man/man9 Makefile accept_filter.9 accf_data.9
Added files:
share/man/man9 accf_dns.9
Log:
SVN rev 180595 on 2008-07-18 14:46:01Z by dwmalone
Add a man page for the DNS accept filt
dwmalone2007-09-13 09:00:32 UTC
FreeBSD src repository
Modified files:
sys/net bpf_filter.c
Log:
Make the type of the memory used by the BPF filter unsigned, so it
matches the BPF registers (which are the only thing that is assigned
to/from BPF memory). This is a
dwmalone2007-09-18 19:50:34 UTC
FreeBSD src repository
Modified files:
sys/amd64/linux32linux.h linux32_proto.h linux32_syscall.h
linux32_sysent.c syscalls.master
sys/compat/linux linux_stats.c
sys/i386/linux linux.h linux_proto.h sysc
dwmalone2007-09-18 19:51:50 UTC
FreeBSD src repository
Modified files:
sys/i386/linux linux_proto.h linux_syscall.h
linux_sysent.c
Log:
regen.
Approved by: re (kensmith)
Revision ChangesPath
1.95 +1 -1 src/sys/i386/linux/
dwmalone2007-11-02 16:27:22 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/net bpf_filter.c
Log:
MFC 1.28:
Make the type of the memory used by the BPF filter unsigned, so it
matches the BPF registers (which are the only thing that is ass
dwmalone2008-03-19 14:35:21 UTC
FreeBSD doc repository (src committer)
Modified files:
en/projects/ideasideas.xml
Log:
The text for the on-disk directory indexing idea described the
improvements from the pre-dirhash situation. Make it more accurate
and suggest dynamic mem
On Fri, Apr 11, 2008 at 09:48:12AM +, Jeff Roberson wrote:
>- Use a lockmgr lock rather than a mtx to protect dirhash. This lock
> may be held for the duration of the various dirhash operations which
> avoids many complex unlock/lock/revalidate sequences.
>- Permit shared loc
> Now instead of freeing a recycled dirhash pointer in ip->i_dirhash I lock
> it and re-create it. This makes various races simpler. The dirhash has
> to be minimally constructed for dirhash_free_locked to function correctly
> if we bail out early.
Ah - OK - I think that probably partially ex
On Sun, Apr 13, 2008 at 04:41:41PM +0200, Fabian Keil wrote:
> On one of my i386 systems, ad1 (the disk with
> the root partition) is no longer detected.
I'm seeing something slightly different. Both disks are detected:
ad0: DMA limited to UDMA33, device found non-ATA66 cable
ad0: 78167MB at ata
On Sun, Apr 13, 2008 at 08:06:30PM +0200, Fabian Keil wrote:
> S?ren Schmidt <[EMAIL PROTECTED]> wrote:
>
> > Should be fixed now, let me know if it still fails, thanks!
>
> Thanks a lot for the quick fix, ad1 is indeed back:
All good here too - thanks!
David.
__
On Fri, Aug 08, 2008 at 12:21:50AM -0600, M. Warner Losh wrote:
> This does beg the question why we need cryptographically secure
> randomness for fortune, however...
I seem to remember us catching a /dev/random related bug because
fortune displayed the same quote too often. Something to do with
s
dwmalone2008-08-16 11:48:10 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_7)
sys/net bpf.c bpf.h
Log:
SVN rev 181783 on 2008-08-16 11:48:10Z by dwmalone
MFC:
Add a new ioctl for changing the read filter (BIOCSETFNR). This is
just like BIO
dwmalone2008-08-16 11:48:44 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_7)
share/man/man4 bpf.4
Log:
SVN rev 181784 on 2008-08-16 11:48:44Z by dwmalone
MFC: Update man page for addition of BIOCSETFNR.
Revision ChangesPath
1.48.2.1 +12
dwmalone2008-08-16 16:27:41 UTC
FreeBSD src repository
Modified files:
usr.bin/unitsunits.c units.lib
Log:
SVN rev 181786 on 2008-08-16 16:27:41Z by dwmalone
Add limited support for units that are related by affine rather
than linear relations. We can now convert d
dwmalone2008-08-21 07:36:17 UTC
FreeBSD src repository
Modified files:
usr.bin/lockflockf.1 lockf.c
Log:
SVN rev 181960 on 2008-08-21 07:36:17Z by dwmalone
Lockf was exiting with status 1 if the command did not exit normally.
This is easy to confuse with the actual
dwmalone2008-09-25 09:28:18 UTC
FreeBSD src repository
Modified files:
usr.sbin/syslogd syslogd.8 syslogd.c
Log:
SVN rev 183347 on 2008-09-25 09:28:18Z by dwmalone
Add a flag, -T, that tells syslogd to always replace the timestamp on
messages from the network. We alrea
dwmalone2008-09-25 12:35:01 UTC
FreeBSD src repository
Modified files:
sys/net if_stf.c
Log:
SVN rev 183351 on 2008-09-25 12:35:01Z by dwmalone
Some people's 6to4 routers seem to have been blowing up because of
the unlocked route caching in if_stf. Add a mutex
1 - 100 of 154 matches
Mail list logo