Searched +hist:1.56 +hist:2.3 (Results 1 - 25 of 37) sorted by relevance
| /src/sys/net/ | ||
| H A D | ppp_tty.c | 1.56 Tue Jan 19 22:08:01 GMT 2010 pooka branches: 1.56.2; 1.56.4; Redefine bpf linkage through an always present op vector, i.e. #if NBPFILTER is no longer required in the client. This change doesn't yet add support for loading bpf as a module, since drivers can register before bpf is attached. However, callers of bpf can now be modularized. Dynamically loadable bpf could probably be done fairly easily with coordination from the stub driver and the real driver by registering attachments in the stub before the real driver is loaded and doing a handoff. ... and I'm not going to ponder the depths of unload here. Tested with i386/MONOLITHIC, modified MONOLITHIC without bpf and rump. 1.56 Tue Jan 19 22:08:01 GMT 2010 pooka branches: 1.56.2; 1.56.4; Redefine bpf linkage through an always present op vector, i.e. #if NBPFILTER is no longer required in the client. This change doesn't yet add support for loading bpf as a module, since drivers can register before bpf is attached. However, callers of bpf can now be modularized. Dynamically loadable bpf could probably be done fairly easily with coordination from the stub driver and the real driver by registering attachments in the stub before the real driver is loaded and doing a handoff. ... and I'm not going to ponder the depths of unload here. Tested with i386/MONOLITHIC, modified MONOLITHIC without bpf and rump. 1.56 Tue Jan 19 22:08:01 GMT 2010 pooka branches: 1.56.2; 1.56.4; Redefine bpf linkage through an always present op vector, i.e. #if NBPFILTER is no longer required in the client. This change doesn't yet add support for loading bpf as a module, since drivers can register before bpf is attached. However, callers of bpf can now be modularized. Dynamically loadable bpf could probably be done fairly easily with coordination from the stub driver and the real driver by registering attachments in the stub before the real driver is loaded and doing a handoff. ... and I'm not going to ponder the depths of unload here. Tested with i386/MONOLITHIC, modified MONOLITHIC without bpf and rump. 1.18 Wed Aug 25 02:04:06 GMT 1999 christos branches: 1.18.2; changes from ppp-2.3.9 [synchronous] 1.11 Wed Mar 12 20:27:01 GMT 1997 christos Update to ppp-2.3b4; from Paul Mackerras |
| H A D | if_ppp.c | 1.56 Sat Nov 27 18:45:08 GMT 1999 hannken Fix typo introduced in rev. 1.55. It caused IP6 packets to be sent as AF_UNSPEC instead of AF_INET6. 1.41 Sat May 02 14:34:24 GMT 1998 christos Merge changes from pppd-2.3.4; adds ppp-deflate-draft stuff and updates zlib. Maybe we can merge our other copy of zlib with this one now and avoid having two copies? 1.39 Sat May 17 21:11:59 GMT 1997 christos Update to ppp-2.3b5 1.37 Wed Mar 12 20:26:50 GMT 1997 christos Update to ppp-2.3b4; from Paul Mackerras |
| H A D | if_sl.c | 1.56 Wed Mar 29 03:43:33 GMT 2000 simonb Don't need to include <sys/conf.h> here. 1.46 Sat May 17 21:12:05 GMT 1997 christos Update to ppp-2.3b5 |
| /src/sys/fs/ntfs/ | ||
| H A D | ntfs_vnops.c | 1.56 Fri Feb 07 15:29:21 GMT 2014 hannken branches: 1.56.2; Change vnode operation lookup to return the resulting vnode *vpp unlocked. Change cache_lookup() to return an unlocked vnode. Discussed on tech-kern@ Welcome to 6.99.31 1.56 Fri Feb 07 15:29:21 GMT 2014 hannken branches: 1.56.2; Change vnode operation lookup to return the resulting vnode *vpp unlocked. Change cache_lookup() to return an unlocked vnode. Discussed on tech-kern@ Welcome to 6.99.31 1.55 Mon Mar 18 19:35:38 GMT 2013 plunky branches: 1.55.6; C99 section 6.7.2.3 (Tags) Note 3 states that: A type specifier of the form enum identifier without an enumerator list shall only appear after the type it specifies is complete. which means that we cannot pass an "enum vtype" argument to kauth_access_action() without fully specifying the type first. Unfortunately there is a complicated include file loop which makes that difficult, so convert this minimal function into a macro (and capitalize it). (ok elad@) |
| /src/sys/fs/adosfs/ | ||
| H A D | advnops.c | 1.56 Tue Jun 29 22:34:05 GMT 2021 dholland - Add a new vnode op: VOP_PARSEPATH. - Move namei_getcomponent to genfs_vnops.c and call it genfs_parsepath. - Add a parsepath entry to every vnode ops table. VOP_PARSEPATH takes a directory vnode to be searched and a complete following path and chooses how much of that path to consume. To begin with, all parsepath calls are genfs_parsepath, which locates the first '/' as always. Note that the call doesn't take the whole struct componentname, only the string. The other bits of struct componentname should not be needed and there's no reason to cause potential complications by exposing them. 1.41 Mon Mar 18 19:35:35 GMT 2013 plunky branches: 1.41.6; C99 section 6.7.2.3 (Tags) Note 3 states that: A type specifier of the form enum identifier without an enumerator list shall only appear after the type it specifies is complete. which means that we cannot pass an "enum vtype" argument to kauth_access_action() without fully specifying the type first. Unfortunately there is a complicated include file loop which makes that difficult, so convert this minimal function into a macro (and capitalize it). (ok elad@) |
| /src/sys/fs/cd9660/ | ||
| H A D | cd9660_vnops.c | 1.56 Thu Apr 23 21:47:07 GMT 2020 ad PR kern/54759 (vm.ubc_direct deadlock when read()/write() into mapping of itself) - Add new flag UBC_ISMAPPED which tells ubc_uiomove() the object is mmap()ed somewhere. Use it to decide whether to do direct-mapped copy, rather than poking around directly in the vnode in ubc_uiomove(), which is ugly and doesn't work for tmpfs. It would be nicer to contain all this in UVM but the filesystem provides the needed locking here (VV_MAPPED) and to reinvent that would suck more. - Rename UBC_UNMAP_FLAG() to UBC_VNODE_FLAGS(). Pass in UBC_ISMAPPED where appropriate. 1.43 Mon Mar 18 19:35:35 GMT 2013 plunky C99 section 6.7.2.3 (Tags) Note 3 states that: A type specifier of the form enum identifier without an enumerator list shall only appear after the type it specifies is complete. which means that we cannot pass an "enum vtype" argument to kauth_access_action() without fully specifying the type first. Unfortunately there is a complicated include file loop which makes that difficult, so convert this minimal function into a macro (and capitalize it). (ok elad@) |
| /src/sys/fs/sysvbfs/ | ||
| H A D | sysvbfs_vnops.c | 1.56 Fri Dec 26 15:23:21 GMT 2014 hannken Change sysvbfs to vcache. 1.47 Mon Mar 18 19:35:40 GMT 2013 plunky C99 section 6.7.2.3 (Tags) Note 3 states that: A type specifier of the form enum identifier without an enumerator list shall only appear after the type it specifies is complete. which means that we cannot pass an "enum vtype" argument to kauth_access_action() without fully specifying the type first. Unfortunately there is a complicated include file loop which makes that difficult, so convert this minimal function into a macro (and capitalize it). (ok elad@) |
| /src/distrib/sets/lists/xbase/ | ||
| H A D | mi | 1.110 Sat Jul 23 00:03:10 GMT 2011 mrg updates for xkeyboard-config 2.3 1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10; Add a note about marking entries as "obsolete", instead of deleting them. 1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10; Add a note about marking entries as "obsolete", instead of deleting them. 1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10; Add a note about marking entries as "obsolete", instead of deleting them. 1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10; Add a note about marking entries as "obsolete", instead of deleting them. 1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10; Add a note about marking entries as "obsolete", instead of deleting them. 1.110 Sat Jul 23 00:03:10 GMT 2011 mrg updates for xkeyboard-config 2.3 1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10; Add a note about marking entries as "obsolete", instead of deleting them. 1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10; Add a note about marking entries as "obsolete", instead of deleting them. 1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10; Add a note about marking entries as "obsolete", instead of deleting them. 1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10; Add a note about marking entries as "obsolete", instead of deleting them. 1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10; Add a note about marking entries as "obsolete", instead of deleting them. |
| H A D | shl.mi | 1.56 Wed Oct 01 09:30:58 GMT 2014 skrll Fix SHLIB_MAJOR to match xorg and fix linking against libxcb-sync which broke kwin for me. 1.27 Mon Apr 13 18:58:08 GMT 2009 snj Update for freetype-2.3.9. |
| /src/tools/gcc/ | ||
| H A D | Makefile | 1.56 Fri Jun 28 08:30:10 GMT 2013 mrg branches: 1.56.2; pass both NEWCONFIGDIR and NETBSDSRCDIR to mknative-gcc. 1.56 Fri Jun 28 08:30:10 GMT 2013 mrg branches: 1.56.2; pass both NEWCONFIGDIR and NETBSDSRCDIR to mknative-gcc. 1.45 Wed Sep 21 02:15:18 GMT 2011 mrg add libgomp support. needed by "cc -fopenmp", that koffice 2.3 wants to use. |
| H A D | mknative-gcc | 1.63 Wed Sep 21 02:15:18 GMT 2011 mrg add libgomp support. needed by "cc -fopenmp", that koffice 2.3 wants to use. 1.56 Fri Jul 01 01:27:17 GMT 2011 mrg - call each ${MKNATIVE_CONFIG_TARGET_LIBS} target separately - comment out maybe-all-target-libgcc - cope with the special transformation needed for gtyp-input.list |
| /src/sys/kern/ | ||
| H A D | tty_pty.c | 1.107 Sun Dec 30 22:03:01 GMT 2007 ad branches: 1.107.2; 1.107.6; Pull up 1.104.2.3: Avoid mutex recursion with kqueue. Reported by martin@. 1.56 Wed May 02 10:32:08 GMT 2001 scw branches: 1.56.2; 1.56.4; 1.56.6; Add `l_poll' to `struct linesw' and provide an xxxpoll() entry point in each tty driver to indirect through it. This allows tty line-disciplines to handle poll(2) system calls. 1.56 Wed May 02 10:32:08 GMT 2001 scw branches: 1.56.2; 1.56.4; 1.56.6; Add `l_poll' to `struct linesw' and provide an xxxpoll() entry point in each tty driver to indirect through it. This allows tty line-disciplines to handle poll(2) system calls. 1.56 Wed May 02 10:32:08 GMT 2001 scw branches: 1.56.2; 1.56.4; 1.56.6; Add `l_poll' to `struct linesw' and provide an xxxpoll() entry point in each tty driver to indirect through it. This allows tty line-disciplines to handle poll(2) system calls. 1.56 Wed May 02 10:32:08 GMT 2001 scw branches: 1.56.2; 1.56.4; 1.56.6; Add `l_poll' to `struct linesw' and provide an xxxpoll() entry point in each tty driver to indirect through it. This allows tty line-disciplines to handle poll(2) system calls. |
| H A D | kern_auth.c | 1.73 Mon Mar 18 19:35:42 GMT 2013 plunky branches: 1.73.14; C99 section 6.7.2.3 (Tags) Note 3 states that: A type specifier of the form enum identifier without an enumerator list shall only appear after the type it specifies is complete. which means that we cannot pass an "enum vtype" argument to kauth_access_action() without fully specifying the type first. Unfortunately there is a complicated include file loop which makes that difficult, so convert this minimal function into a macro (and capitalize it). (ok elad@) 1.56 Thu Nov 29 19:50:28 GMT 2007 ad Fix minor error in previous. |
| /src/sys/dev/pci/ | ||
| H A D | pcireg.h | 1.56 Wed Nov 28 04:03:16 GMT 2007 briggs branches: 1.56.2; 1.56.6; Correct a typo. To create the command/status word, shift the components left, not right. 1.56 Wed Nov 28 04:03:16 GMT 2007 briggs branches: 1.56.2; 1.56.6; Correct a typo. To create the command/status word, shift the components left, not right. 1.56 Wed Nov 28 04:03:16 GMT 2007 briggs branches: 1.56.2; 1.56.6; Correct a typo. To create the command/status word, shift the components left, not right. 1.37 Fri Mar 22 20:03:20 GMT 2002 drochner branches: 1.37.2; iadd subclass codes from the 2.3 spec |
| H A D | pci_subr.c | 1.56 Sun Jun 29 22:30:26 GMT 2003 fvdl branches: 1.56.2; Back out the lwp/ktrace changes. They contained a lot of colateral damage, and need to be examined and discussed more. 1.56 Sun Jun 29 22:30:26 GMT 2003 fvdl branches: 1.56.2; Back out the lwp/ktrace changes. They contained a lot of colateral damage, and need to be examined and discussed more. 1.48 Fri Mar 22 20:03:20 GMT 2002 drochner iadd subclass codes from the 2.3 spec 1.56 Sun Jun 29 22:30:26 GMT 2003 fvdl branches: 1.56.2; Back out the lwp/ktrace changes. They contained a lot of colateral damage, and need to be examined and discussed more. 1.56 Sun Jun 29 22:30:26 GMT 2003 fvdl branches: 1.56.2; Back out the lwp/ktrace changes. They contained a lot of colateral damage, and need to be examined and discussed more. 1.48 Fri Mar 22 20:03:20 GMT 2002 drochner iadd subclass codes from the 2.3 spec |
| /src/sys/fs/ptyfs/ | ||
| H A D | ptyfs_vnops.c | 1.56 Thu Sep 26 18:35:48 GMT 2019 christos cast VNOVAL to the the va_size type which is u_quad_t... I think it is time to change this to uint64_t... 1.41 Mon Mar 18 19:35:38 GMT 2013 plunky branches: 1.41.6; C99 section 6.7.2.3 (Tags) Note 3 states that: A type specifier of the form enum identifier without an enumerator list shall only appear after the type it specifies is complete. which means that we cannot pass an "enum vtype" argument to kauth_access_action() without fully specifying the type first. Unfortunately there is a complicated include file loop which makes that difficult, so convert this minimal function into a macro (and capitalize it). (ok elad@) |
| /src/sys/sys/ | ||
| H A D | kauth.h | 1.71 Mon Mar 18 19:35:46 GMT 2013 plunky branches: 1.71.14; C99 section 6.7.2.3 (Tags) Note 3 states that: A type specifier of the form enum identifier without an enumerator list shall only appear after the type it specifies is complete. which means that we cannot pass an "enum vtype" argument to kauth_access_action() without fully specifying the type first. Unfortunately there is a complicated include file loop which makes that difficult, so convert this minimal function into a macro (and capitalize it). (ok elad@) 1.56 Tue May 05 21:03:28 GMT 2009 elad Add device scope actions for rnd(4) and use them. Mailing list reference: http://mail-index.netbsd.org/tech-kern/2009/04/27/msg004953.html |
| H A D | sched.h | 1.89 Tue May 12 11:21:09 GMT 2020 kamil Remove the stub support of CLONE_PID in clone(2) CLONE_PID causes the child clonee to share the same process id as cloner. It was implemented for debugging purposes in the Linux kernel 2.0, restricted to root only in 2.3.21 and removed from Linux 2.5.16. The CLONE_PID bit was recycled for CLONE_PIDFD in Linux 5.2. 1.56 Mon May 19 00:48:54 GMT 2008 rmind - Make periodical balancing mandatory. - Fix priority raising in M2 (broken after making runqueues mandatory). |
| /src/sys/arch/amiga/amiga/ | ||
| H A D | amiga_init.c | 1.58 Fri Apr 10 15:59:35 GMT 1998 mhitch Fix a bug I think I introduced long, long ago. The bug would only show up on systems that have Zorro I/O space allocated outside the Z2 I/O region, and then only if kvm usage is high enough to begin allocating pages already mapped for hardware mappings. Found and fixed by Niklas Hallqvist on OpenBSD. From niklas@cvs.openbsd.org: Yay! This fixes a bug that has been there since day one of the amiga port. We have never protected the kvm area that maps Zorro I/O registers in the Z2 memory space from being allocated by the kmem_* routines. Lately kvm usage has increased and we have needed more kvm allocated than earlier thus this area have got allocated with random results. Most often resulting in MMU fault panics, but also in hangs. This bug has stalled the amiga port release builds for several weeks, but now I *hope* the amiga will have a chance to be built and tested in time for 2.3. 1.56 Tue Jun 10 18:22:24 GMT 1997 veego branches: 1.56.8; s/amiga_round_page/m68k_round_page/ 1.56 Tue Jun 10 18:22:24 GMT 1997 veego branches: 1.56.8; s/amiga_round_page/m68k_round_page/ 1.58 Fri Apr 10 15:59:35 GMT 1998 mhitch Fix a bug I think I introduced long, long ago. The bug would only show up on systems that have Zorro I/O space allocated outside the Z2 I/O region, and then only if kvm usage is high enough to begin allocating pages already mapped for hardware mappings. Found and fixed by Niklas Hallqvist on OpenBSD. From niklas@cvs.openbsd.org: Yay! This fixes a bug that has been there since day one of the amiga port. We have never protected the kvm area that maps Zorro I/O registers in the Z2 memory space from being allocated by the kmem_* routines. Lately kvm usage has increased and we have needed more kvm allocated than earlier thus this area have got allocated with random results. Most often resulting in MMU fault panics, but also in hangs. This bug has stalled the amiga port release builds for several weeks, but now I *hope* the amiga will have a chance to be built and tested in time for 2.3. 1.56 Tue Jun 10 18:22:24 GMT 1997 veego branches: 1.56.8; s/amiga_round_page/m68k_round_page/ 1.56 Tue Jun 10 18:22:24 GMT 1997 veego branches: 1.56.8; s/amiga_round_page/m68k_round_page/ |
| /src/sys/fs/msdosfs/ | ||
| H A D | msdosfs_vnops.c | 1.86 Mon Mar 18 19:35:37 GMT 2013 plunky branches: 1.86.6; C99 section 6.7.2.3 (Tags) Note 3 states that: A type specifier of the form enum identifier without an enumerator list shall only appear after the type it specifies is complete. which means that we cannot pass an "enum vtype" argument to kauth_access_action() without fully specifying the type first. Unfortunately there is a complicated include file loop which makes that difficult, so convert this minimal function into a macro (and capitalize it). (ok elad@) 1.56 Sun Jan 11 02:45:51 GMT 2009 christos merge christos-time_t |
| /src/sys/fs/udf/ | ||
| H A D | udf_vnops.c | 1.75 Mon Mar 18 19:35:41 GMT 2013 plunky C99 section 6.7.2.3 (Tags) Note 3 states that: A type specifier of the form enum identifier without an enumerator list shall only appear after the type it specifies is complete. which means that we cannot pass an "enum vtype" argument to kauth_access_action() without fully specifying the type first. Unfortunately there is a complicated include file loop which makes that difficult, so convert this minimal function into a macro (and capitalize it). (ok elad@) 1.56 Tue Jan 05 13:30:11 GMT 2010 mbalmer Remove extra semicolons. |
| /src/lib/libedit/ | ||
| H A D | readline.c | 1.133 Fri May 13 15:55:59 GMT 2016 christos From Bastian Maerkisch, via Igno Schwarze: Even though section "2.3.3 Information About the History List" of the history(3) info(1) manual only says -- Function: int where_history (void) Returns the offset of the current history element. which maybe isn't completely clear, a plausible implementation is that the offset returned is the same offset that can be used for history_set_pos(), i.e. that it is 0 for the oldest entry and increases with time, and that's how the GNU implementation behaves indeed. The libedit implementation, on the other hand, returns 1 for the newest entry and increases going back in time. 1.56 Fri Jun 10 20:21:00 GMT 2005 christos Bug reported from Martin Dietze: The place to change the completion_append_character is usually somewhere in the `rl_completion_entry_function' callback which is where one usually can distinguish between file- or dir-like entries to append a slash for dirs etc. This does no longer work since `fn_complete()' takes the `append_character' as argument before the callback is executed, so that changes to the variable `rl_completion_append_character' have in fact no effect for the current completion. Fix by adding a function that returns the rl_completion_append_character, when it gets passed in a filename in readline emulation. |
| /src/sys/opencrypto/ | ||
| H A D | cryptodev.c | 1.56 Fri May 06 21:48:46 GMT 2011 drochner As a first step towards more fine-grained locking, don't require crypto_{new.free}session() to be called with the "crypto_mtx" spinlock held. This doesn't change much for now because these functions acquire the said mutex first on entry now, but at least it keeps the nasty locks local to the opencrypto core. 1.4 Thu Aug 21 16:08:05 GMT 2003 jonathan Pull up `done' flag for crypto operations from FreeBSD. FreeBSD deltas: cryptodev.c: 1.4.2.3 -> 1.4.2.4 cryptodev.h: 1.4.2.4 -> 1.4.2.5 |
| /src/sys/ufs/ext2fs/ | ||
| H A D | ext2fs_vnops.c | 1.107 Mon Mar 18 19:35:47 GMT 2013 plunky branches: 1.107.6; C99 section 6.7.2.3 (Tags) Note 3 states that: A type specifier of the form enum identifier without an enumerator list shall only appear after the type it specifies is complete. which means that we cannot pass an "enum vtype" argument to kauth_access_action() without fully specifying the type first. Unfortunately there is a complicated include file loop which makes that difficult, so convert this minimal function into a macro (and capitalize it). (ok elad@) 1.56 Fri Sep 17 14:11:27 GMT 2004 skrll There's no need to pass a proc value when using UIO_SYSSPACE with vn_rdwr(9) and uiomove(9). OK'd by Jason Thorpe |
| /src/sys/fs/tmpfs/ | ||
| H A D | tmpfs_vnops.c | 1.101 Mon Mar 18 19:35:40 GMT 2013 plunky branches: 1.101.6; C99 section 6.7.2.3 (Tags) Note 3 states that: A type specifier of the form enum identifier without an enumerator list shall only appear after the type it specifies is complete. which means that we cannot pass an "enum vtype" argument to kauth_access_action() without fully specifying the type first. Unfortunately there is a complicated include file loop which makes that difficult, so convert this minimal function into a macro (and capitalize it). (ok elad@) 1.56 Sun Apr 05 15:10:41 GMT 2009 pooka Invariants should be tested for with KASSERT instead of semi-pretending that them not holding is an acceptable error condition. |
Completed in 255 milliseconds