cvs commit: src/share/man/man4 ipfirewall.4 src/share/man/man9 pfil.9 src/sys/alpha/conf GENERIC src/sys/amd64/conf GENERIC src/sys/conf NOTES files options src/sys/i386/conf GENERIC src/sys/ia64/conf GENERIC SKI src/sys/modules/bridge Makefile ...

Andre Oppermann andre at FreeBSD.org
Fri Aug 27 08:16:24 PDT 2004


andre       2004-08-27 15:16:24 UTC

  FreeBSD src repository

  Modified files:
    share/man/man4       ipfirewall.4 
    share/man/man9       pfil.9 
    sys/alpha/conf       GENERIC 
    sys/amd64/conf       GENERIC 
    sys/conf             NOTES files options 
    sys/i386/conf        GENERIC 
    sys/ia64/conf        GENERIC SKI 
    sys/modules/bridge   Makefile 
    sys/net              bridge.c 
    sys/netinet          ip_fastfwd.c ip_fw_pfil.c ip_input.c 
                         ip_output.c ip_var.h 
    sys/netinet6         ip6_forward.c ip6_input.c ip6_output.c 
                         ip6_var.h 
    sys/pc98/conf        GENERIC 
    sys/powerpc/conf     GENERIC 
    sys/sparc64/conf     GENERIC 
    .                    UPDATING 
  Log:
  Always compile PFIL_HOOKS into the kernel and remove the associated kernel
  compile option.  All FreeBSD packet filters now use the PFIL_HOOKS API and
  thus it becomes a standard part of the network stack.
  
  If no hooks are connected the entire packet filter hooks section and related
  activities are jumped over.  This removes any performance impact if no hooks
  are active.
  
  Both OpenBSD and DragonFlyBSD have integrated PFIL_HOOKS permanently as well.
  
  Revision  Changes    Path
  1.350     +4 -0      src/UPDATING
  1.31      +0 -2      src/share/man/man4/ipfirewall.4
  1.15      +0 -6      src/share/man/man9/pfil.9
  1.175     +0 -1      src/sys/alpha/conf/GENERIC
  1.422     +0 -1      src/sys/amd64/conf/GENERIC
  1.1264    +0 -7      src/sys/conf/NOTES
  1.945     +2 -2      src/sys/conf/files
  1.477     +0 -1      src/sys/conf/options
  1.414     +0 -1      src/sys/i386/conf/GENERIC
  1.68      +0 -1      src/sys/ia64/conf/GENERIC
  1.20      +0 -1      src/sys/ia64/conf/SKI
  1.4       +0 -9      src/sys/modules/bridge/Makefile
  1.83      +1 -9      src/sys/net/bridge.c
  1.18      +9 -5      src/sys/netinet/ip_fastfwd.c
  1.7       +1 -5      src/sys/netinet/ip_fw_pfil.c
  1.286     +11 -17    src/sys/netinet/ip_input.c
  1.228     +7 -17     src/sys/netinet/ip_output.c
  1.90      +1 -3      src/sys/netinet/ip_var.h
  1.26      +6 -10     src/sys/netinet6/ip6_forward.c
  1.77      +9 -11     src/sys/netinet6/ip6_input.c
  1.83      +6 -8      src/sys/netinet6/ip6_output.c
  1.28      +1 -3      src/sys/netinet6/ip6_var.h
  1.256     +0 -1      src/sys/pc98/conf/GENERIC
  1.43      +0 -1      src/sys/powerpc/conf/GENERIC
  1.79      +0 -1      src/sys/sparc64/conf/GENERIC


More information about the cvs-src mailing list