[Fwd: [Fwd: Re: cvs commit: src/sys/conf files src/sys/i386/conf NOTES src/sys/amd64/conf NOTES src/sys/dev/drm ati_pcigart.c drm-preprocess.sh drm-subprocess.pl drm.h drmP.h drm_agpsuppor

2005-12-13 Thread Roman Kurakin

Hi,

   Any chance to see i915 on RELENG_6? It seems it works for
me after cvs update -r 1 drm on 6.0 ;-) If you want I may run
some tests.

rik

Eric Anholt:


anholt  2005-11-28 23:13:57 UTC

 FreeBSD src repository

 Modified files:
   sys/conf files 
   sys/i386/confNOTES 
   sys/amd64/conf   NOTES 
   sys/dev/drm  ati_pcigart.c drm.h drmP.h 
drm_agpsupport.c drm_atomic.h drm_auth.c 
drm_bufs.c drm_context.c drm_dma.c 
drm_drawable.c drm_drv.c drm_fops.c 
drm_ioctl.c drm_irq.c drm_linux_list.h 
drm_lock.c drm_memory.c drm_pci.c 
drm_pciids.h drm_sarea.h drm_scatter.c 
drm_sysctl.c drm_vm.c i915_dma.c 
i915_drm.h i915_drv.c i915_drv.h 
i915_irq.c i915_mem.c mach64_dma.c 
mach64_drm.h mach64_drv.c mach64_drv.h 
mach64_irq.c mach64_state.c mga_dma.c 
mga_drm.h mga_drv.c mga_drv.h mga_irq.c 
mga_state.c mga_ucode.h mga_warp.c 
r128_cce.c r128_drm.h r128_drv.c 
r128_drv.h r128_irq.c r128_state.c 
r300_cmdbuf.c r300_reg.h radeon_cp.c 
radeon_drm.h radeon_drv.c radeon_drv.h 
radeon_irq.c radeon_mem.c radeon_state.c 
savage_bci.c savage_drm.h savage_drv.c 
savage_drv.h savage_state.c sis_drm.h 
sis_drv.c sis_drv.h sis_ds.c sis_ds.h 
sis_mm.c tdfx_drv.c tdfx_drv.h 
   sys/modules/drm  Makefile 
 Added files:
   sys/dev/drm  drm-preprocess.sh drm-subprocess.pl 
   sys/modules/drm/i915 Makefile 
   sys/modules/drm/savage Makefile 
 Log:

 Update DRM to CVS snapshot as of 2005-11-28.  Notable changes:
 - S3 Savage driver ported.
 - Added support for ATI_fragment_shader registers for r200.
 - Improved r300 support, needed for latest r300 DRI driver.
 - (possibly) r300 PCIE support, needs X.Org server from CVS.
 - Added support for PCI Matrox cards.
 - Software fallbacks fixed for Rage 128, which used to render badly or hang.
 - Some issues reported by WITNESS are fixed.
 - i915 module Makefile added, as the driver may now be working, but is 
untested.
 - Added scripts for copying and preprocessing DRM CVS for inclusion in the
   kernel.  Thanks to Daniel Stone for getting me started on that.
 
 Revision  ChangesPath

 1.50  +1 -0  src/sys/amd64/conf/NOTES
 1.1071+3 -0  src/sys/conf/files
 1.3   +39 -59src/sys/dev/drm/ati_pcigart.c
 1.1   +20 -0 src/sys/dev/drm/drm-preprocess.sh (new)
 1.1   +50 -0 src/sys/dev/drm/drm-subprocess.pl (new)
 1.10  +20 -3 src/sys/dev/drm/drm.h
 1.15  +134 -64   src/sys/dev/drm/drmP.h
 1.3   +183 -80   src/sys/dev/drm/drm_agpsupport.c
 1.2   +3 -2  src/sys/dev/drm/drm_atomic.h
 1.2   +3 -1  src/sys/dev/drm/drm_auth.c
 1.3   +266 -167  src/sys/dev/drm/drm_bufs.c
 1.2   +11 -6 src/sys/dev/drm/drm_context.c
 1.2   +6 -7  src/sys/dev/drm/drm_dma.c
 1.2   +3 -1  src/sys/dev/drm/drm_drawable.c
 1.2   +203 -182  src/sys/dev/drm/drm_drv.c
 1.2   +11 -4 src/sys/dev/drm/drm_fops.c
 1.2   +7 -5  src/sys/dev/drm/drm_ioctl.c
 1.2   +21 -12src/sys/dev/drm/drm_irq.c
 1.4   +3 -1  src/sys/dev/drm/drm_linux_list.h
 1.2   +7 -4  src/sys/dev/drm/drm_lock.c
 1.2   +4 -2  src/sys/dev/drm/drm_memory.c
 1.2   +90 -15src/sys/dev/drm/drm_pci.c
 1.4   +200 -7src/sys/dev/drm/drm_pciids.h
 1.6   +3 -2  src/sys/dev/drm/drm_sarea.h
 1.2   +12 -7 src/sys/dev/drm/drm_scatter.c
 1.2   +4 -3  src/sys/dev/drm/drm_sysctl.c
 1.2   +26 -19src/sys/dev/drm/drm_vm.c
 1.2   +80 -30src/sys/dev/drm/i915_dma.c
 1.2   +29 -2 src/sys/dev/drm/i915_drm.h
 1.2   +32 -31src/sys/dev/drm/i915_drv.c
 1.2   +38 -9 src/sys/dev/drm/i915_drv.h
 1.2   +31 -11src/sys/dev/drm/i915_irq.c
 1.2   +29 -9 src/sys/dev/drm/i915_mem.c
 1.2   +23 -25src/sys/dev/drm/mach64_dma.c
 1.2   +5 -3  src/sys/dev/drm/mach64_drm.h
 1.2   +28 -30src/sys/dev/drm/mach64_drv.c
 1.2   +10 -5 src/sys/dev/drm/mach64_drv.h
 1.2   +5 -3  src/sys/dev/drm/mach64_irq.c
 1.2   +30 -27src/sys/dev/drm/mach64_state.c
 1.13  +538 -100  src/sys/dev/drm/mga_dma.c
 1.7   +93 -13src/sys/dev/drm/mga_drm.h
 1.10  +73 -30src/sys/dev/drm/mga_drv.c
 1.10  +64 -10src/sys/dev/drm/mga_drv.h
 1.6   +55 -5 src/sys/dev/drm/mga_irq.c
 1.11  +84 -21src/sys/dev/drm/mga_state.c
 1.4   +5 -4  src/sys/dev/drm/mga_ucode.h
 1.8   +32 -38src/sys/dev/drm/mga_warp.c
 1.14  +18 -12sr

Re: cvs commit: src/sys/amd64/conf NOTES src/sys/i386/conf NOTES src/sys/conf files src/sys/modules/drm Makefile src/sys/modules/drm/i915 Makefile src/sys/modules/drm/savage Makefile src/sys/dev/drm a

2005-12-13 Thread Roman Kurakin

Thanks.

rik

Eric Anholt:


anholt  2005-12-14 00:53:00 UTC

 FreeBSD src repository

 Modified files:(Branch: RELENG_6)
   sys/amd64/conf   NOTES 
   sys/i386/confNOTES 
   sys/conf files 
   sys/modules/drm  Makefile 
   sys/dev/drm  ati_pcigart.c drm.h drmP.h 
drm_agpsupport.c drm_atomic.h drm_auth.c 
drm_bufs.c drm_context.c drm_dma.c 
drm_drawable.c drm_drv.c drm_fops.c 
drm_ioctl.c drm_irq.c drm_linux_list.h 
drm_lock.c drm_memory.c drm_pci.c 
drm_pciids.h drm_sarea.h drm_scatter.c 
drm_sysctl.c drm_vm.c i915_dma.c 
i915_drm.h i915_drv.c i915_drv.h 
i915_irq.c i915_mem.c mach64_dma.c 
mach64_drm.h mach64_drv.c mach64_drv.h 
mach64_irq.c mach64_state.c mga_dma.c 
mga_drm.h mga_drv.c mga_drv.h mga_irq.c 
mga_state.c mga_ucode.h mga_warp.c 
r128_cce.c r128_drm.h r128_drv.c 
r128_drv.h r128_irq.c r128_state.c 
r300_cmdbuf.c r300_reg.h radeon_cp.c 
radeon_drm.h radeon_drv.c radeon_drv.h 
radeon_irq.c radeon_mem.c radeon_state.c 
savage_bci.c savage_drm.h savage_drv.c 
savage_drv.h savage_state.c sis_drm.h 
sis_drv.c sis_drv.h sis_ds.c sis_ds.h 
sis_mm.c tdfx_drv.c tdfx_drv.h 
 Added files:   (Branch: RELENG_6)
   sys/modules/drm/i915 Makefile 
   sys/modules/drm/savage Makefile 
 Log:

 MFC DRM.  Notable changes:
 - i915 (i830-i915) driver ported.
 - S3 Savage driver ported.
 - Added support for ATI_fragment_shader registers for r200.
 - Improved r300 support, needed for latest r300 DRI driver.
 - (possibly) r300 PCIE support, needs X.Org server from CVS.
 - Added support for PCI Matrox cards.
 - Software fallbacks fixed for Rage 128, which used to render badly or hang.
 - Some issues reported by WITNESS are fixed.
 
 Revision ChangesPath

 1.36.2.9 +2 -0  src/sys/amd64/conf/NOTES
 1.1031.2.12  +7 -0  src/sys/conf/files
 1.1.2.2  +39 -59src/sys/dev/drm/ati_pcigart.c
 1.9.2.1  +20 -3 src/sys/dev/drm/drm.h
 1.13.2.2 +134 -64   src/sys/dev/drm/drmP.h
 1.1.2.2  +183 -80   src/sys/dev/drm/drm_agpsupport.c
 1.1.2.1  +3 -2  src/sys/dev/drm/drm_atomic.h
 1.1.2.1  +3 -1  src/sys/dev/drm/drm_auth.c
 1.2.2.1  +266 -167  src/sys/dev/drm/drm_bufs.c
 1.1.2.1  +11 -6 src/sys/dev/drm/drm_context.c
 1.1.2.1  +6 -7  src/sys/dev/drm/drm_dma.c
 1.1.2.1  +3 -1  src/sys/dev/drm/drm_drawable.c
 1.1.2.1  +207 -182  src/sys/dev/drm/drm_drv.c
 1.1.2.1  +11 -4 src/sys/dev/drm/drm_fops.c
 1.1.2.1  +7 -5  src/sys/dev/drm/drm_ioctl.c
 1.1.2.1  +21 -12src/sys/dev/drm/drm_irq.c
 1.3.2.1  +3 -1  src/sys/dev/drm/drm_linux_list.h
 1.1.2.1  +7 -4  src/sys/dev/drm/drm_lock.c
 1.1.2.1  +4 -2  src/sys/dev/drm/drm_memory.c
 1.1.2.1  +90 -15src/sys/dev/drm/drm_pci.c
 1.2.2.2  +200 -7src/sys/dev/drm/drm_pciids.h
 1.5.2.1  +3 -2  src/sys/dev/drm/drm_sarea.h
 1.1.2.1  +12 -7 src/sys/dev/drm/drm_scatter.c
 1.1.2.1  +4 -3  src/sys/dev/drm/drm_sysctl.c
 1.1.2.1  +26 -19src/sys/dev/drm/drm_vm.c
 1.1.2.1  +80 -30src/sys/dev/drm/i915_dma.c
 1.1.2.1  +29 -2 src/sys/dev/drm/i915_drm.h
 1.1.2.1  +32 -31src/sys/dev/drm/i915_drv.c
 1.1.2.1  +38 -9 src/sys/dev/drm/i915_drv.h
 1.1.2.1  +31 -11src/sys/dev/drm/i915_irq.c
 1.1.2.1  +29 -9 src/sys/dev/drm/i915_mem.c
 1.1.2.1  +23 -25src/sys/dev/drm/mach64_dma.c
 1.1.2.1  +5 -3  src/sys/dev/drm/mach64_drm.h
 1.1.2.1  +28 -30src/sys/dev/drm/mach64_drv.c
 1.1.2.1  +10 -5 src/sys/dev/drm/mach64_drv.h
 1.1.2.1  +5 -3  src/sys/dev/drm/mach64_irq.c
 1.1.2.1  +30 -27src/sys/dev/drm/mach64_state.c
 1.12.2.1 +538 -100  src/sys/dev/drm/mga_dma.c
 1.6.2.1  +93 -13src/sys/dev/drm/mga_drm.h
 1.9.2.1  +73 -30src/sys/dev/drm/mga_drv.c
 1.9.2.1  +64 -10src/sys/dev/drm/mga_drv.h
 1.5.2.1  +55 -5 src/sys/dev/drm/mga_irq.c
 1.10.2.1 +84 -21src/sys/dev/drm/mga_state.c
 1.3.2.1  +5 -4  src/sys/dev/drm/mga_ucode.h
 1.7.2.1  +32 -38src/sys/dev/drm/mga_warp.c
 1.12.2.2 +18 -12src/sys/dev/drm/r128_cce.c
 1.7.2.1  +6 -4  src/sys/dev/drm/r128_drm.h
 1.9.2.1  +35 -31src/sys/dev/drm/r128_drv.c
 1.10.2.1 +14 -7 src/sys/dev/drm/r128_drv.h
 1.5.2.1  +5 -3  src/sys/dev/drm/r128_irq.c
 1.12.2.1 +28 -22src/sys/dev/drm/r128_state.c
 1.2.2.2  +3 -2  src/sys/dev/drm/r300_cmdbuf.c
 1.1.2

cvs commit: doc/share/pgpkeys rik.key

2005-12-17 Thread Roman Kurakin
rik 2005-12-17 18:43:04 UTC

  FreeBSD doc repository (src committer)

  Modified files:
share/pgpkeysrik.key 
  Log:
  Add my new key.
  
  Revision  ChangesPath
  1.2   +37 -12doc/share/pgpkeys/rik.key
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/kern kern_descrip.c

2006-01-04 Thread Roman Kurakin
rik 2006-01-04 10:35:47 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_5)
sys/kern kern_descrip.c 
  Log:
  MFC: -j 1.280 -j 1.281
  ---
  revision 1.281
  date: 2005/10/04 16:27:54;  author: rik; state: Exp;  lines: +3 -1
  Use FILEDESC_UNLOCK(fdp) after FILE_ULOCK(p), not before to avoid LOR.
  Slightly discussed on [EMAIL PROTECTED]
  
  LOR #055
  
  MFC after:  14 days
  
  
  Revision   ChangesPath
  1.243.2.9  +3 -1  src/sys/kern/kern_descrip.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: www/en/donations donors.sgml

2006-01-24 Thread Roman Kurakin
rik 2006-01-24 21:44:45 UTC

  FreeBSD doc repository (src committer)

  Modified files:
en/donations donors.sgml 
  Log:
  I've got Cronyx Tau-PCI/32. Thanks to vak at cronyx dot ru!
  
  Revision  ChangesPath
  1.304 +8 -1  www/en/donations/donors.sgml
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/dev/ce ceddk.c ceddk.h if_ce.c ng_ce.h tau32-ddk.c tau32-ddk.h

2006-01-27 Thread Roman Kurakin
rik 2006-01-27 09:02:09 UTC

  FreeBSD src repository

  Added files:
sys/dev/ce   ceddk.c ceddk.h if_ce.c ng_ce.h 
 tau32-ddk.c tau32-ddk.h 
  Log:
  Initial import of ce(4) driver for Cronyx Tau-PCI/32 adapters.
  Not yet connected to the build.
  
  Revision  ChangesPath
  1.1   +1522 -0   src/sys/dev/ce/ceddk.c (new)
  1.1   +201 -0src/sys/dev/ce/ceddk.h (new)
  1.1   +2681 -0   src/sys/dev/ce/if_ce.c (new)
  1.1   +31 -0 src/sys/dev/ce/ng_ce.h (new)
  1.1   +4322 -0   src/sys/dev/ce/tau32-ddk.c (new)
  1.1   +514 -0src/sys/dev/ce/tau32-ddk.h (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/netgraph ng_sppp.c

2006-01-29 Thread Roman Kurakin
rik 2006-01-29 22:06:51 UTC

  FreeBSD src repository

  Modified files:
sys/netgraph ng_sppp.c 
  Log:
  Fix module from panic.
  Pointy hat: brooks
  MFC after:  3 days
  
  Revision  ChangesPath
  1.10  +1 -0  src/sys/netgraph/ng_sppp.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/modules/ce Makefile

2006-01-29 Thread Roman Kurakin
rik 2006-01-29 22:10:54 UTC

  FreeBSD src repository

  Added files:
sys/modules/ce   Makefile 
  Log:
  Add makefile for ce(4) module.
  
  Revision  ChangesPath
  1.1   +29 -0 src/sys/modules/ce/Makefile (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/i386/include cserial.h

2006-01-30 Thread Roman Kurakin
rik 2006-01-30 13:34:57 UTC

  FreeBSD src repository

  Modified files:
sys/i386/include cserial.h 
  Log:
  Prepare for sconfig(8) update.
  Change also my e-mail.
  
  Revision  ChangesPath
  1.3   +74 -4 src/sys/i386/include/cserial.h
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/sconfig sconfig.c

2006-01-30 Thread Roman Kurakin
rik 2006-01-30 21:08:30 UTC

  FreeBSD src repository

  Modified files:
sbin/sconfig sconfig.c 
  Log:
  Add support for Cronyx TAU-PCI/32 ce(4).
  
  Revision  ChangesPath
  1.3   +68 -16src/sbin/sconfig/sconfig.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/dev/ce if_ce.c

2006-01-30 Thread Roman Kurakin
rik 2006-01-30 21:12:49 UTC

  FreeBSD src repository

  Modified files:
sys/dev/ce   if_ce.c 
  Log:
  Fix forward variable declaration.
  
  Revision  ChangesPath
  1.2   +68 -61src/sys/dev/ce/if_ce.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/man/man4/man4.i386 ce.4

2006-01-30 Thread Roman Kurakin
rik 2006-01-30 21:33:22 UTC

  FreeBSD src repository

  Added files:
share/man/man4/man4.i386 ce.4 
  Log:
  Add manual page for Cronyx Tau-PCI/32 ce(4) driver.
  
  Revision  ChangesPath
  1.1   +115 -0src/share/man/man4/man4.i386/ce.4 (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/man/man4/man4.i386 ce.4

2006-01-31 Thread Roman Kurakin
rik 2006-01-31 23:06:54 UTC

  FreeBSD src repository

  Modified files:
share/man/man4/man4.i386 ce.4 
  Log:
  Remove duplicate model entry.
  
  Revision  ChangesPath
  1.2   +0 -4  src/share/man/man4/man4.i386/ce.4
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/man/man4/man4.i386 Makefile src/sys/conf files.i386 src/sys/i386/conf NOTES src/sys/modules Makefile

2006-01-31 Thread Roman Kurakin
rik 2006-01-31 23:11:35 UTC

  FreeBSD src repository

  Modified files:
share/man/man4/man4.i386 Makefile 
sys/conf files.i386 
sys/i386/confNOTES 
sys/modules  Makefile 
  Log:
  Attach ce(4) to the build.
  
  MFC after:  3 days
  
  Revision  ChangesPath
  1.183 +1 -0  src/share/man/man4/man4.i386/Makefile
  1.551 +3 -0  src/sys/conf/files.i386
  1.1218+4 -0  src/sys/i386/conf/NOTES
  1.472 +2 -0  src/sys/modules/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/netgraph ng_sppp.c

2006-01-31 Thread Roman Kurakin
rik 2006-02-01 04:50:07 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_6)
sys/netgraph ng_sppp.c 
  Log:
  MFC: -j 1.9 -j 1.10
  
  revision 1.10
  date: 2006/01/29 22:06:51;  author: rik;  state: Exp;  lines: +1 -0
  Fix module from panic.
  Pointy hat: brooks
  MFC after:  3 days
  
  Revision  ChangesPath
  1.8.2.2   +1 -0  src/sys/netgraph/ng_sppp.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sys/conf files.pc98 src/sys/pc98/conf NOTES

2006-02-02 Thread Roman Kurakin

Takahashi Yoshihiro wrote:

nyan2006-02-02 11:14:13 UTC

  FreeBSD src repository

  Modified files:
sys/conf files.pc98 
sys/pc98/confNOTES 
  Log:

  MFi386: Enable the ce(4).
  

Thanks!
  
  Revision  ChangesPath

  1.335 +3 -0  src/sys/conf/files.pc98
  1.71  +4 -0  src/sys/pc98/conf/NOTES
  


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sys/dev/ce if_ce.c

2006-02-03 Thread Roman Kurakin

Ruslan Ermilov:


ru  2006-02-03 20:55:30 UTC

 FreeBSD src repository

 Modified files:
   sys/dev/ce   if_ce.c 
 Log:

 Fix compilation with -Wundef (NBPF is undefined on FreeBSD >4).


Thanks!

rik

 
 Revision  ChangesPath

 1.3   +4 -1  src/sys/dev/ce/if_ce.c
 




___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml src/release/doc/share/misc dev.archlist.txt

2006-02-04 Thread Roman Kurakin

Christian Brueffer:


brueffer2006-02-04 13:42:07 UTC

 FreeBSD src repository (doc committer)

 Modified files:
   release/doc/en_US.ISO8859-1/hardware/common dev.sgml 
   release/doc/share/misc dev.archlist.txt 
 Log:

 Autogenerate hardware notes for the ce(4) driver.
 
 Revision  ChangesPath

 1.294 +2 -0  src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml
 1.76  +1 -0  src/release/doc/share/misc/dev.archlist.txt
 


Thanks!

rik


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sys/netinet6 in6.c

2006-02-08 Thread Roman Kurakin

Christian S.J. Peron:


George V. Neville-Neil wrote:


gnn 2006-02-08 07:16:46 UTC

 FreeBSD src repository

 Modified files:
   sys/netinet6 in6.c  Log:
 Fix for an inappropriate bzero of the ICMPv6 stats.  The code was 
zero'ing the wrong structure member but setting the correct one.
 
 Submitted by:   James dot Juran at baesystems dot com

 Reviewed by:gnn
 MFC after:  1 week
 
 Revision  ChangesPath

 1.60  +1 -1  src/sys/netinet6/in6.c

I sure hope gnn reviewed it, especially if gnn committed it :) 


May be it is not always true? ;-)


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/dev/ce tau32-ddk.c tau32-ddk.h

2006-03-01 Thread Roman Kurakin
rik 2006-03-01 09:50:21 UTC

  FreeBSD src repository

  Modified files:
sys/dev/ce   tau32-ddk.c tau32-ddk.h 
  Log:
  Update low-level code. (to version 1.4)
  
  Obtained from:  Cronyx Engineering
  MFC after:  3 days
  
  Revision  Changes  Path
  1.2   +4235 -4219  src/sys/dev/ce/tau32-ddk.c
  1.2   +12 -10  src/sys/dev/ce/tau32-ddk.h
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/dev/ce ceddk.c ceddk.h if_ce.c ng_ce.h tau32-ddk.c tau32-ddk.h

2006-03-04 Thread Roman Kurakin
rik 2006-03-04 22:45:14 UTC

  FreeBSD src repository

  Added files:   (Branch: RELENG_4)
sys/dev/ce   ceddk.c ceddk.h if_ce.c ng_ce.h 
 tau32-ddk.c tau32-ddk.h 
  Log:
  MFC:
  Add support for Cronyx Tau32-PCI adapters.
  
  Revision  ChangesPath
  1.1.2.1   +1522 -0   src/sys/dev/ce/ceddk.c (new)
  1.1.2.1   +201 -0src/sys/dev/ce/ceddk.h (new)
  1.3.2.1   +2691 -0   src/sys/dev/ce/if_ce.c (new)
  1.1.2.1   +31 -0 src/sys/dev/ce/ng_ce.h (new)
  1.2.2.1   +4338 -0   src/sys/dev/ce/tau32-ddk.c (new)
  1.2.2.1   +516 -0src/sys/dev/ce/tau32-ddk.h (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/modules/ce Makefile

2006-03-04 Thread Roman Kurakin
rik 2006-03-04 22:51:43 UTC

  FreeBSD src repository

  Added files:   (Branch: RELENG_4)
sys/modules/ce   Makefile 
  Log:
  MFC:
  Add support for Cronyx Tau32-PCI adapters.
  
  Revision  ChangesPath
  1.2.2.1   +46 -0 src/sys/modules/ce/Makefile (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/i386/include cserial.h

2006-03-04 Thread Roman Kurakin
rik 2006-03-04 22:53:19 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_4)
sys/i386/include cserial.h 
  Log:
  MFC:
  Add support for Cronyx Tau32-PCI adapters.
  
  Revision  ChangesPath
  1.1.4.2   +74 -4 src/sys/i386/include/cserial.h
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/sconfig sconfig.c

2006-03-04 Thread Roman Kurakin
rik 2006-03-04 22:54:27 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_4)
sbin/sconfig sconfig.c 
  Log:
  MFC:
  Add support for Cronyx Tau32-PCI adapters.
  
  Revision  ChangesPath
  1.2.4.2   +68 -16src/sbin/sconfig/sconfig.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/man/man4/man4.i386 ce.4

2006-03-04 Thread Roman Kurakin
rik 2006-03-04 22:55:48 UTC

  FreeBSD src repository

  Added files:   (Branch: RELENG_4)
share/man/man4/man4.i386 ce.4 
  Log:
  MFC:
  Add support for Cronyx Tau32-PCI adapters.
  
  Revision  ChangesPath
  1.2.2.1   +105 -0src/share/man/man4/man4.i386/ce.4 (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/conf files.i386 files.pc98 majors src/share/man/man4/man4.i386 Makefile src/sys/i386/conf LINT src/etc MAKEDEV

2006-03-04 Thread Roman Kurakin
rik 2006-03-04 23:01:39 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_4)
sys/conf files.i386 files.pc98 majors 
share/man/man4/man4.i386 Makefile 
sys/i386/confLINT 
etc  MAKEDEV 
  Log:
  MFC:
  Add support for Cronyx Tau32-PCI adapters.
  Connect to the system.
  
  Revision ChangesPath
  1.243.2.72   +18 -0 src/etc/MAKEDEV
  1.122.2.18   +1 -1  src/share/man/man4/man4.i386/Makefile
  1.307.2.49   +3 -0  src/sys/conf/files.i386
  1.140.2.49   +3 -0  src/sys/conf/files.pc98
  1.98.2.29+1 -1  src/sys/conf/majors
  1.749.2.176  +4 -0  src/sys/i386/conf/LINT
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/i386/include cserial.h

2006-03-07 Thread Roman Kurakin
rik 2006-03-07 13:32:48 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_5)
sys/i386/include cserial.h 
  Log:
  MFC:
  Add support for Cronyx Tau32-PCI adapters.
  
  Approved by:re(scottl)
  
  Revision  ChangesPath
  1.1.6.2   +74 -4 src/sys/i386/include/cserial.h
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/sconfig sconfig.c

2006-03-07 Thread Roman Kurakin
rik 2006-03-07 13:35:39 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_5)
sbin/sconfig sconfig.c 
  Log:
  MFC:
  Add support for Cronyx Tau32-PCI adapters.
  
  Approved by: re(scottl)
  
  Revision  ChangesPath
  1.2.6.1   +68 -16src/sbin/sconfig/sconfig.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/man/man4/man4.i386 ce.4 src/sys/dev/ce ceddk.c ceddk.h if_ce.c ng_ce.h tau32-ddk.c tau32-ddk.h src/sys/modules/ce Makefile

2006-03-07 Thread Roman Kurakin
rik 2006-03-07 13:44:33 UTC

  FreeBSD src repository

  Added files:   (Branch: RELENG_5)
share/man/man4/man4.i386 ce.4 
sys/dev/ce   ceddk.c ceddk.h if_ce.c ng_ce.h 
 tau32-ddk.c tau32-ddk.h 
sys/modules/ce   Makefile 
  Log:
  MFC:
  Add support for Cronyx Tau32-PCI adapters.
  
  Approved by:re(scottl)
  
  Revision  ChangesPath
  1.2.4.1   +112 -0src/share/man/man4/man4.i386/ce.4 (new)
  1.1.4.1   +1522 -0   src/sys/dev/ce/ceddk.c (new)
  1.1.4.1   +201 -0src/sys/dev/ce/ceddk.h (new)
  1.3.4.1   +2691 -0   src/sys/dev/ce/if_ce.c (new)
  1.1.4.1   +31 -0 src/sys/dev/ce/ng_ce.h (new)
  1.2.4.1   +4338 -0   src/sys/dev/ce/tau32-ddk.c (new)
  1.2.4.1   +516 -0src/sys/dev/ce/tau32-ddk.h (new)
  1.2.4.1   +39 -0 src/sys/modules/ce/Makefile (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/man/man4/man4.i386 Makefile src/sys/conf files.i386 files.pc98 src/sys/i386/conf NOTES src/sys/modules Makefile

2006-03-07 Thread Roman Kurakin
rik 2006-03-07 13:53:57 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_5)
share/man/man4/man4.i386 Makefile 
sys/conf files.i386 files.pc98 
sys/i386/confNOTES 
sys/modules  Makefile 
  Log:
  MFC:
  Add support for Cronyx Tau32-PCI. Cross fingers and hook it to the
  system.
  
  Approved by:re(scottl)
  
  Revision ChangesPath
  1.173.2.2+1 -0  src/share/man/man4/man4.i386/Makefile
  1.504.2.9+3 -0  src/sys/conf/files.i386
  1.305.2.3+3 -0  src/sys/conf/files.pc98
  1.1168.2.10  +4 -0  src/sys/i386/conf/NOTES
  1.393.2.15   +2 -0  src/sys/modules/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/i386/include cserial.h src/sbin/sconfig sconfig.c

2006-03-10 Thread Roman Kurakin
rik 2006-03-10 23:10:39 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_6)
sys/i386/include cserial.h 
sbin/sconfig sconfig.c 
  Log:
  MFC:
  Add support for Cronyx Tau32-PCI adapters. (update)
  
  Approved by:re(scottl)
  
  Revision  ChangesPath
  1.2.12.1  +68 -16src/sbin/sconfig/sconfig.c
  1.2.2.1   +74 -4 src/sys/i386/include/cserial.h
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/conf files.i386 files.pc98 src/share/man/man4/man4.i386 Makefile src/sys/i386/conf NOTES src/sys/modules Makefile

2006-03-10 Thread Roman Kurakin
rik 2006-03-10 23:27:41 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_6)
sys/conf files.i386 files.pc98 
share/man/man4/man4.i386 Makefile 
sys/i386/confNOTES 
sys/modules  Makefile 
  Log:
  MFC:
  Add support for Cronyx Tau32-PCI adapters. (connect to the build)
  
  Approved by:re(scottl)
  
  RevisionChangesPath
  1.178.2.4   +1 -0  src/share/man/man4/man4.i386/Makefile
  1.538.2.4   +3 -0  src/sys/conf/files.i386
  1.327.2.3   +3 -0  src/sys/conf/files.pc98
  1.1202.2.6  +4 -0  src/sys/i386/conf/NOTES
  1.450.2.14  +2 -0  src/sys/modules/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/man/man4/man4.i386 ce.4 src/sys/dev/ce ceddk.c ceddk.h if_ce.c ng_ce.h tau32-ddk.c tau32-ddk.h src/sys/modules/ce Makefile

2006-03-10 Thread Roman Kurakin
rik 2006-03-10 22:57:36 UTC

  FreeBSD src repository

  Added files:   (Branch: RELENG_6)
share/man/man4/man4.i386 ce.4 
sys/dev/ce   ceddk.c ceddk.h if_ce.c ng_ce.h 
 tau32-ddk.c tau32-ddk.h 
sys/modules/ce   Makefile 
  Log:
  MFC:
  Add support for Cronyx Tau32-PCI adapters. (new code)
  
  Approved by:re(scottl)
  
  Revision  ChangesPath
  1.2.6.1   +112 -0src/share/man/man4/man4.i386/ce.4 (new)
  1.1.6.1   +1522 -0   src/sys/dev/ce/ceddk.c (new)
  1.1.6.1   +201 -0src/sys/dev/ce/ceddk.h (new)
  1.3.6.1   +2691 -0   src/sys/dev/ce/if_ce.c (new)
  1.1.6.1   +31 -0 src/sys/dev/ce/ng_ce.h (new)
  1.2.6.1   +4338 -0   src/sys/dev/ce/tau32-ddk.c (new)
  1.2.6.1   +516 -0src/sys/dev/ce/tau32-ddk.h (new)
  1.2.6.1   +29 -0 src/sys/modules/ce/Makefile (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml

2006-03-12 Thread Roman Kurakin
rik 2006-03-12 22:56:56 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_4)
release/doc/en_US.ISO8859-1/hardware/common dev.sgml 
release/doc/en_US.ISO8859-1/relnotes/common new.sgml 
  Log:
  MFC:
  Add support for Cronyx Tau32-PCI adapters.
  
  RevisionChangesPath
  1.13.2.96   +12 -0 
src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml
  1.22.2.430  +4 -0  
src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml src/release/doc/share/misc dev.archlist.txt

2006-03-12 Thread Roman Kurakin
rik 2006-03-12 23:43:02 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_6)
release/doc/en_US.ISO8859-1/hardware/common dev.sgml 
release/doc/en_US.ISO8859-1/relnotes/common new.sgml 
release/doc/share/misc dev.archlist.txt 
  Log:
  MFC:
  Add support for Cronyx Tau32-PCI adapters.
  
  Approved by:re(scottl)
  
  RevisionChangesPath
  1.282.2.9   +2 -0  
src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml
  1.883.2.13  +4 -0  
src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml
  1.62.2.9+1 -0  src/release/doc/share/misc/dev.archlist.txt
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml src/release/doc/share/misc dev.archlist.txt

2006-03-12 Thread Roman Kurakin
rik 2006-03-12 23:44:00 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_5)
release/doc/en_US.ISO8859-1/hardware/common dev.sgml 
release/doc/en_US.ISO8859-1/relnotes/common new.sgml 
release/doc/share/misc dev.archlist.txt 
  Log:
  MFC:
  Add support for Cronyx Tau32-PCI adapters.
  
  Approved by:re(scottl)
  
  RevisionChangesPath
  1.227.2.35  +2 -0  
src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml
  1.761.2.54  +4 -0  
src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml
  1.5.2.32+1 -0  src/release/doc/share/misc/dev.archlist.txt
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/net if_bridge.c

2006-03-23 Thread Roman Kurakin
rik 2006-03-23 22:57:10 UTC

  FreeBSD src repository

  Modified files:
sys/net  if_bridge.c 
  Log:
  m_dup () packet not m_copypacket () since we will modify it. For more
  details see PR kern/94448.
  
  PR: kern/94448
  
  Original patch: Eygene A. Ryabinkin Final patch:thompsa@
  Tested by:  thompsa@, Eygene A. Ryabinkin
  
  MFC after:  7 days
  
  Revision  ChangesPath
  1.57  +11 -2 src/sys/net/if_bridge.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sys/net if_bridge.c

2006-04-03 Thread Roman Kurakin

Thanks! I was a bit busy.

rik

Andrew Thompson wrote:

thompsa 2006-04-02 04:42:37 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_5)
sys/net  if_bridge.c 
  Log:

  MFC r1.57-58
  
   Use m_dup rather than m_copypacket as we need a writable mbuf
  
  On behalf of:   rik

  Approved by:re (hrs)
  
  Revision   ChangesPath

  1.23.2.11  +14 -2 src/sys/net/if_bridge.c
  


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/examples/drivers make_pseudo_driver.sh

2006-08-23 Thread Roman Kurakin
rik 2006-08-23 23:51:29 UTC

  FreeBSD src repository

  Modified files:
share/examples/drivers make_pseudo_driver.sh 
  Log:
  Fix path for source file in files.FOO.
  
  Revision  ChangesPath
  1.13  +1 -1  src/share/examples/drivers/make_pseudo_driver.sh
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src UPDATING src/sys/conf newvers.sh src/sys/net if_spppsubr.c

2006-08-24 Thread Roman Kurakin

Thanks!

rik

Colin Percival:

cperciva2006-08-23 22:06:40 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_4_11)
.UPDATING 
sys/conf newvers.sh 
sys/net  if_spppsubr.c 
  Log:

  Correct buffer overflow in the handling of LCP options in ppp(4)
  
  Security:   FreeBSD-SA-06:18.ppp

  Approved by:so (cperciva)
  
  RevisionChangesPath

  1.73.2.91.2.21  +3 -0  src/UPDATING
  1.44.2.39.2.24  +1 -1  src/sys/conf/newvers.sh
  1.59.2.13.10.1  +24 -12src/sys/net/if_spppsubr.c
  


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/examples/drivers make_device_driver.sh

2006-08-24 Thread Roman Kurakin
rik 2006-08-24 11:13:30 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_6)
share/examples/drivers make_device_driver.sh 
  Log:
  MFC: -j 1.21 -j 1.24
  

revision 1.24
date: 2006/08/09 10:53:26;  author: rik;  state: Exp;  lines: +24 -3
- Added 'files "files.FOO"' to config for inclusion of user specific files.
- Added KDB option to config file (for DDB).
- Added ability to compile custom kernel.
  
Discussed with: julian@

revision 1.23
date: 2006/08/06 11:06:35;  author: rik;  state: Exp;  lines: +32 -19
- Added ability to provide (optional) path to the kernel sources
- Fixed path for ${s}/conf/files.FOO and a note that it should be merged 
into
  corresponding file to be able to compile the kernel
- Changed kernel configuration example with the driver: it is not produced 
by
  copying Generic but by including it
- Changed from automatic module building to asking an user if it whants to
  
Reviewed by:julian@

revision 1.22
date: 2006/08/06 11:04:22;  author: rik;  state: Exp;  lines: +9 -12
Fix compilation.
  
Reviewed by:julian@

  
  Requested by: yar@
  
  Revision   ChangesPath
  1.21.10.1  +63 -32src/share/examples/drivers/make_device_driver.sh
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/examples/drivers make_pseudo_driver.sh

2006-08-24 Thread Roman Kurakin
rik 2006-08-24 11:17:48 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_6)
share/examples/drivers make_pseudo_driver.sh 
  Log:
  MFC: -j 1.10 -j 1.13
  

revision 1.13
date: 2006/08/23 23:51:29;  author: rik;  state: Exp;  lines: +1 -1
Fix path for source file in files.FOO.

revision 1.12
date: 2006/08/09 21:23:42;  author: rik;  state: Exp;  lines: +122 -22
- Added ability to provide (optional) path to the kernel sources
- Added check of dirs used by example generator
- Fixed path for ${s}/conf/files.FOO and include it via files
  directive from config file
- Changed kernel configuration example with the driver: it is
  not produced by copying Generic but by including it
- KDB is added to config (for DDB)
- Added module building instead and fixed kernel building
  
Reviewed by:  julian@

revision 1.11
date: 2006/08/09 20:57:24;  author: rik;  state: Exp;  lines: +57 -32
Added copyright templete
Fixed compilation
  
Reviewed by:  julian@

  
  Requested by:   yar@
  
  Revision  ChangesPath
  1.10.2.1  +179 -54   src/share/examples/drivers/make_pseudo_driver.sh
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/sys kobj.h

2006-08-24 Thread Roman Kurakin
rik 2006-08-24 21:09:39 UTC

  FreeBSD src repository

  Modified files:
sys/sys  kobj.h 
  Log:
  Fix typo in a comment: DEFINE_CLASSx => DEFINE_CLASS_x.
  
  MFC after: 1 week
  
  Revision  ChangesPath
  1.11  +3 -3  src/sys/sys/kobj.h
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: "Chatty" config files in /etc

2006-08-31 Thread Roman Kurakin

Helge Oldach wrote:

Sergey Babkin:
  

From: Tom Rhodes <[EMAIL PROTECTED]>
  

I think they should be moved to /usr/share/examples/etc/ (like
make.conf), with files in /etc/ representing good (short) defaults
with a minimum of comments and probably references to examples.


I don't think anything should be moved, nor "chattiness" removed.
It's a great convenience, to find the examples right in
the config file, and one of the great things about FreeBSD.



Absolutely, I fully agree, backed by FreeBSD sysadmin experience since
2.1.6.

IMHO mergemaster provides a great tool to properly deal with upgrades of
such "default" files, particularly since the addition of the -U option.
  

I suggest to make these files the way which would encourage peoples to keep
example part, for example, under working part. Example will be still in the
file, it will not bother admin, cause it do not cover essential part of 
the file,

and will simplify merging.
The initial working part could be merged while installation with example 
part,

and this working part shouldn't be merged while subsequent updates.

rik

Helge
  


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/examples/drivers make_device_driver.sh

2006-08-06 Thread Roman Kurakin
rik 2006-08-06 11:04:22 UTC

  FreeBSD src repository

  Modified files:
share/examples/drivers make_device_driver.sh 
  Log:
  Fix compilation.
  
  Reviewed by:julian@
  
  Revision  ChangesPath
  1.22  +9 -12 src/share/examples/drivers/make_device_driver.sh
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/examples/drivers make_device_driver.sh

2006-08-06 Thread Roman Kurakin
rik 2006-08-06 11:06:36 UTC

  FreeBSD src repository

  Modified files:
share/examples/drivers make_device_driver.sh 
  Log:
  - Added ability to provide (optional) path to the kernel sources
  - Fixed path for ${s}/conf/files.FOO and a note that it should be merged into
  corresponding file to be able to compile the kernel
  - Changed kernel configuration example with the driver: it is not produced by
  copying Generic but by including it
  - Changed from automatic module building to asking an user if it whants to
  
  Reviewed by:julian@
  
  Revision  ChangesPath
  1.23  +32 -19src/share/examples/drivers/make_device_driver.sh
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/share/examples/drivers make_device_driver.sh

2006-08-06 Thread Roman Kurakin
Example is for developers mostly, so I in doubts about MFC compilation 
fixup and this

one commit.

rik

Roman Kurakin:


rik 2006-08-06 11:06:36 UTC

 FreeBSD src repository

 Modified files:
   share/examples/drivers make_device_driver.sh 
 Log:

 - Added ability to provide (optional) path to the kernel sources
 - Fixed path for ${s}/conf/files.FOO and a note that it should be merged into
 corresponding file to be able to compile the kernel
 - Changed kernel configuration example with the driver: it is not produced by
 copying Generic but by including it
 - Changed from automatic module building to asking an user if it whants to
 
 Reviewed by:julian@
 
 Revision  ChangesPath

 1.23  +32 -19src/share/examples/drivers/make_device_driver.sh
 



___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/share/examples/drivers make_device_driver.sh

2006-08-08 Thread Roman Kurakin
We could add a "foo" driver to the LINT generated by this script with 
notification

that it was generated and all changes should be placed to script.

rik

Robert Watson wrote:


On Tue, 8 Aug 2006, Yar Tikhiy wrote:


On Sun, Aug 06, 2006 at 05:46:41PM +0400, Roman Kurakin wrote:

Example is for developers mostly, so I in doubts about MFC compilation
fixup and this
one commit.


I still can remeber that, when the world and I were younger, I used 
to study FreeBSD examples and sources for any release I had on hand 
at the moment. There still are plenty of places on the globe where 
off-line is the normal state of being, so we should provide good 
reference material for developers on our release CD's, to my mind. 
This also warrants MFC of fixes to source comments as long as they 
help to understand the code.  Of course, all this is just my private 
opinion.


In general, I think we're better served by providing skeleton or stub 
implementations of code that are part of the base source tree (and 
compiled as part of it) than providing scripts and detached sample 
source code.  The reason is that any code not attached to the tree 
almost instantly rots into uselessness.


Robert N M Watson
Computer Laboratory
University of Cambridge




Roman Kurakin:


rik 2006-08-06 11:06:36 UTC

FreeBSD src repository

Modified files:
  share/examples/drivers make_device_driver.sh
Log:
- Added ability to provide (optional) path to the kernel sources
- Fixed path for ${s}/conf/files.FOO and a note that it should be 
merged

into
corresponding file to be able to compile the kernel
- Changed kernel configuration example with the driver: it is not
produced by
copying Generic but by including it
- Changed from automatic module building to asking an user if it 
whants to


Reviewed by:julian@

Revision  ChangesPath
1.23  +32 -19src/share/examples/drivers/make_device_driver.sh




--
Yar



___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/examples/drivers make_device_driver.sh

2006-08-09 Thread Roman Kurakin
rik 2006-08-09 10:53:26 UTC

  FreeBSD src repository

  Modified files:
share/examples/drivers make_device_driver.sh 
  Log:
  - Added 'files "files.FOO"' to config for inclusion of user specific files.
  - Added KDB option to config file (for DDB).
  - Added ability to compile custom kernel.
  
  Discussed with: julian@
  
  Revision  ChangesPath
  1.24  +24 -3 src/share/examples/drivers/make_device_driver.sh
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/examples/drivers make_pseudo_driver.sh

2006-08-09 Thread Roman Kurakin
rik 2006-08-09 20:57:24 UTC

  FreeBSD src repository

  Modified files:
share/examples/drivers make_pseudo_driver.sh 
  Log:
  Added copyright templete
  Fixed compilation
  
  Reviewed by:julian@
  
  Revision  ChangesPath
  1.11  +57 -32src/share/examples/drivers/make_pseudo_driver.sh
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/examples/drivers make_pseudo_driver.sh

2006-08-09 Thread Roman Kurakin
rik 2006-08-09 21:23:42 UTC

  FreeBSD src repository

  Modified files:
share/examples/drivers make_pseudo_driver.sh 
  Log:
  - Added ability to provide (optional) path to the kernel sources
  - Added check of dirs used by example generator
  - Fixed path for ${s}/conf/files.FOO and include it via files
directive from config file
  - Changed kernel configuration example with the driver: it is
not produced by copying Generic but by including it
  - KDB is added to config (for DDB)
  - Added module building instead and fixed kernel building
  
  Reviewed by:julian@
  
  Revision  ChangesPath
  1.12  +122 -22   src/share/examples/drivers/make_pseudo_driver.sh
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/share/examples/drivers make_device_driver.sh

2006-08-09 Thread Roman Kurakin

Robert Watson:



On Tue, 8 Aug 2006, Roman Kurakin wrote:

We could add a "foo" driver to the LINT generated by this script with 
notification that it was generated and all changes should be placed 
to script.


I guess I can't help but wonder if a script is necessarily better than 
a well-commented template.


Today I've talked with [EMAIL PROTECTED] He suggests to put an example to tree and 
change script to produce
a copy of driver using example from tree as a template via sed or smth 
like that. It sounds like
a good idea. We could have a single dir in subtree with various examples 
and a set of scripts that

could produce from one of the examples a driver to start with.

rik



Robert N M Watson
Computer Laboratory
University of Cambridge



rik

Robert Watson wrote:



On Tue, 8 Aug 2006, Yar Tikhiy wrote:


On Sun, Aug 06, 2006 at 05:46:41PM +0400, Roman Kurakin wrote:

Example is for developers mostly, so I in doubts about MFC 
compilation

fixup and this
one commit.



I still can remeber that, when the world and I were younger, I used 
to study FreeBSD examples and sources for any release I had on hand 
at the moment. There still are plenty of places on the globe where 
off-line is the normal state of being, so we should provide good 
reference material for developers on our release CD's, to my mind. 
This also warrants MFC of fixes to source comments as long as they 
help to understand the code.  Of course, all this is just my 
private opinion.



In general, I think we're better served by providing skeleton or 
stub implementations of code that are part of the base source tree 
(and compiled as part of it) than providing scripts and detached 
sample source code.  The reason is that any code not attached to the 
tree almost instantly rots into uselessness.


Robert N M Watson
Computer Laboratory
University of Cambridge




Roman Kurakin:


rik 2006-08-06 11:06:36 UTC

FreeBSD src repository

Modified files:
  share/examples/drivers make_device_driver.sh
Log:
- Added ability to provide (optional) path to the kernel sources
- Fixed path for ${s}/conf/files.FOO and a note that it should be 
merged

into
corresponding file to be able to compile the kernel
- Changed kernel configuration example with the driver: it is not
produced by
copying Generic but by including it
- Changed from automatic module building to asking an user if it 
whants to


Reviewed by:julian@

Revision  ChangesPath
1.23  +32 -19
src/share/examples/drivers/make_device_driver.sh





--
Yar






___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/share/examples/drivers make_device_driver.sh

2006-08-10 Thread Roman Kurakin

Yar Tikhiy wrote:

On Thu, Aug 10, 2006 at 02:06:18AM +0400, Roman Kurakin wrote:
  

Robert Watson:



On Tue, 8 Aug 2006, Roman Kurakin wrote:

  
We could add a "foo" driver to the LINT generated by this script with 
notification that it was generated and all changes should be placed 
to script.

I guess I can't help but wonder if a script is necessarily better than 
a well-commented template.
  
Today I've talked with [EMAIL PROTECTED] He suggests to put an example to tree and 
change script to produce
a copy of driver using example from tree as a template via sed or smth 
like that. It sounds like
a good idea. We could have a single dir in subtree with various examples 
and a set of scripts that

could produce from one of the examples a driver to start with.



...and if you manage to make the driver do some real job so that
people start using it in production, it will have nearly zero chance
to fall into oblivion; it will remain in a very good shape instead.
No, I'm telling nonsense here:  A useful driver will be hacked
sooner or later into a huge, ugly, incomprehensible beast reeking
with features. :-)
  
If you want to add a new functionality you just need to create a new 
example.

Probably it wouldn't be bad to have a driver with higher level of complexity
that can do the same (and more) than the other one that is much more simple.

rik

___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/sconfig sconfig.c src/sys/dev/ce ceddk.h if_ce.c src/sys/dev/cp cpddk.h if_cp.c src/sys/dev/ctau ctddk.h if_ct.c src/sys/dev/cx cxddk.h if_cx.c

2008-06-30 Thread Roman Kurakin
rik 2008-06-30 21:18:27 UTC

  FreeBSD src repository

  Modified files:
sbin/sconfig sconfig.c 
sys/dev/ce   ceddk.h if_ce.c 
sys/dev/cp   cpddk.h if_cp.c 
sys/dev/ctau ctddk.h if_ct.c 
sys/dev/cx   cxddk.h if_cx.c 
  Log:
  SVN rev 180132 on 2008-06-30 21:18:27Z by rik
  
  Do not set IFF_DEBUG directly from the driver.
  
  MFC after:  1 month.
  
  Revision  ChangesPath
  1.6   +21 -1 src/sbin/sconfig/sconfig.c
  1.2   +1 -0  src/sys/dev/ce/ceddk.h
  1.10  +12 -7 src/sys/dev/ce/if_ce.c
  1.5   +1 -0  src/sys/dev/cp/cpddk.h
  1.35  +12 -7 src/sys/dev/cp/if_cp.c
  1.3   +1 -0  src/sys/dev/ctau/ctddk.h
  1.36  +12 -7 src/sys/dev/ctau/if_ct.c
  1.3   +1 -0  src/sys/dev/cx/cxddk.h
  1.59  +23 -8 src/sys/dev/cx/if_cx.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/share/man/man9 style.9

2008-07-09 Thread Roman Kurakin

David Schultz wrote:

On Wed, Jul 09, 2008, Daniel Gerzo wrote:
  

-Do not declare functions inside other functions; ANSI C says that
-such declarations have file scope regardless of the nesting of the
-declaration.
-Hiding file declarations in what appears to be a local
-scope is undesirable and will elicit complaints from a good compiler.
+Do not declare functions inside other functions; nested functions are
+a GCC extension and are not permitted by ANSI C.



We use lots of extensions that aren't strict ANSI C. I think the
real reason not to use them is that gcc's nested functions are
particularly unwieldily. First, they're not true lexical closures
(and can't be), which makes them much less useful. Second, they
are unsupported unless a number of assumptions are met, e.g., must
have an executable stack, must be able to invalidate the I cache
from userland, and must not have separate I and D address spaces.
Nested functions abominable enough that Apple disabled the feature
in OS X's build of gcc --- and the Sun and Intel compilers don't
support them, even though Intel claims nearly complete gcc
compatibility.
  
I think from non-technical side, nested functions are not expected by 
most programmers.
From my point of view there are many new extensions that a good for 
quick hacking, but

not for the production code.

rik


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/share/man/man9 style.9

2008-07-10 Thread Roman Kurakin

Daniel Gerzo wrote:

Hello guys,

Wednesday, July 9, 2008, 8:08:02 PM, has been written:

  

-Do not declare functions inside other functions; ANSI C says that
-such declarations have file scope regardless of the nesting of the
-declaration.
-Hiding file declarations in what appears to be a local
-scope is undesirable and will elicit complaints from a good compiler.
+Do not declare functions inside other functions; nested functions are
+a GCC extension and are not permitted by ANSI C.



We use lots of extensions that aren't strict ANSI C. I think the
real reason not to use them is that gcc's nested functions are
particularly unwieldily. First, they're not true lexical closures
(and can't be), which makes them much less useful. Second, they
are unsupported unless a number of assumptions are met, e.g., must
have an executable stack, must be able to invalidate the I cache
from userland, and must not have separate I and D address spaces.
Nested functions abominable enough that Apple disabled the feature
in OS X's build of gcc --- and the Sun and Intel compilers don't
support them, even though Intel claims nearly complete gcc
compatibility.
  
  
I think from non-technical side, nested functions are not expected by 
most programmers.
 From my point of view there are many new extensions that a good for 
quick hacking, but

not for the production code.



So may I leave my change in the current state, or do you guys want me
to do some additional changes?
  
IMHO "are not permitted by ANSI" is not secure enough in case ANSI will 
release
a new edition. And some one may say "hey it is permitted by ANSI now, 
let start using

it".

rik


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/games/fortune/strfile strfile.c

2008-08-10 Thread Roman Kurakin

Hi,

Does any one has any technical reason why this change is wrong, or makes 
smth
worse? If this change makes smth better, even a bit, and does not ruin 
smth, why it does

not have a chance for existence?

IMHO.

rik

Andrey Chernov wrote:

On Fri, Aug 08, 2008 at 12:16:44PM +0200, Dag-Erling Sm??rgrav wrote:
  

1) PRNG is not crypto.
  
Stop spewing nonsense.  



Do you have enough education to determene what is nonsense and what is 
not here? For example I have master degree in mathematics.


  
PRNG and crypto are inseparable.  



Well separable areas. Various PRNGs can be used in or choosed by crypto. 
But no crypto in PRNG itself.


  

In addition,
as you very well know, this PRNG is actually the keystream generator for
the RC4 stream cipher.



Yes, I know. And what? Crypto uses math intensively, not PRNGs only, 
hashes etc.


To confirm my words, OpenBSD uses ar4random() almost everywhere in the 
tree, especially after realizing "modulo bias" bug, and use it as "plain" 
PRNG even in simplest non-crypto areas.


  


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml

2008-08-19 Thread Roman Kurakin
rik 2008-08-19 21:31:34 UTC

  FreeBSD doc repository (src committer)

  Modified files:
en_US.ISO8859-1/articles/contributors contrib.additional.sgml 
  Log:
  Add Eygene Ryabinkin for numerous patches in various arreas.
  He is also maintainer of several ports.
  
  Revision  ChangesPath
  1.819 +5 -0  
doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sys/conf newvers.sh

2008-08-25 Thread Roman Kurakin

By the way, what our plans about release media?

IIRC ru@ had plans to add DVD target. As a temporary solution there is a 
script that
merges CD-volumes in to a single DVD volume (written by me). If we still 
have plans

to release CD's IMHO it is definitely should be among the tools on CD.

Also I have made some patches but didn't test them fully yet that 
provides an ability
to setup packages from CD set without requirements of DJ skills. Is 
there interest in

them?

Best regards,

rik

Ken Smith wrote:

kensmith2008-08-25 17:33:43 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_7)
sys/conf newvers.sh 
  Log:

  SVN rev 182166 on 2008-08-25 17:33:43Z by kensmith
  
  We're less than a week from code freeze for the 7.1-REL release cycle.

  Start calling RELENG_7 "7.1-PRERELEASE" now to warn people that we're
  nearing code freeze so things might get a bit bumpy.
  
  Revision  ChangesPath

  1.72.2.9  +2 -2  src/sys/conf/newvers.sh
  


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/sconfig sconfig.c src/sys/dev/ce ceddk.h if_ce.c src/sys/dev/cp cpddk.h if_cp.c src/sys/dev/ctau ctddk.h if_ct.c src/sys/dev/cx cxddk.h if_cx.c

2008-08-28 Thread Roman Kurakin
rik 2008-08-28 08:30:19 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_7)
sbin/sconfig sconfig.c 
sys/dev/ce   ceddk.h if_ce.c 
sys/dev/cp   cpddk.h if_cp.c 
sys/dev/ctau ctddk.h if_ct.c 
sys/dev/cx   cxddk.h if_cx.c 
  Log:
  SVN rev 182363 on 2008-08-28 08:30:19Z by rik
  
  MFC: r180132 and 176407

r180132 | rik | 2008-07-01 01:18:27 +0400 (Tue, 01 Jul 2008) | 4 lines
  
Do not set IFF_DEBUG directly from the driver.
  
MFC after:  1 month.
  

r176407 | ru | 2008-02-19 10:09:19 +0300 (Tue, 19 Feb 2008) | 2 lines
  
getopt(3) returns -1, not EOF.
  
  Revision  ChangesPath
  1.4.2.1   +22 -2 src/sbin/sconfig/sconfig.c
  1.1.8.1   +1 -0  src/sys/dev/ce/ceddk.h
  1.9.2.1   +12 -7 src/sys/dev/ce/if_ce.c
  1.4.10.1  +1 -0  src/sys/dev/cp/cpddk.h
  1.34.2.1  +12 -7 src/sys/dev/cp/if_cp.c
  1.2.10.1  +1 -0  src/sys/dev/ctau/ctddk.h
  1.34.2.2  +12 -7 src/sys/dev/ctau/if_ct.c
  1.2.10.1  +1 -0  src/sys/dev/cx/cxddk.h
  1.57.2.2  +23 -8 src/sys/dev/cx/if_cx.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/tools/tools/cd2dvd cd2dvd.sh

2008-08-31 Thread Roman Kurakin
rik 2008-08-31 22:08:39 UTC

  FreeBSD src repository

  Added files:
tools/tools/cd2dvd   cd2dvd.sh 
  Log:
  SVN rev 182578 on 2008-08-31 22:08:39Z by rik
  
  Add simple cd to dvd conversion script.
  
  Revision  ChangesPath
  1.1   +267 -0src/tools/tools/cd2dvd/cd2dvd.sh (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/netinet ip_fw.h ip_fw2.c

2008-09-06 Thread Roman Kurakin
rik 2008-09-06 16:47:07 UTC

  FreeBSD src repository

  Modified files:
sys/netinet  ip_fw.h ip_fw2.c 
  Log:
  SVN rev 182818 on 2008-09-06 16:47:07Z by rik
  
  Export the IPFW_DEFAULT_RULE outside ip_fw2.c.  This number in not only
  the default rule number but also the maximum rule number.  User space
  software such as ipfw and natd should be aware of its value.  The
  software that already includes ip_fw.h should use the defined value.  All
  other a expected to use sysctl (as discussed on net@).
  
  MFC after: 5 days.
  Discussed on: net@
  
  Revision  ChangesPath
  1.115 +5 -0  src/sys/netinet/ip_fw.h
  1.192 +2 -1  src/sys/netinet/ip_fw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/ipfw ipfw2.c

2008-09-06 Thread Roman Kurakin
rik 2008-09-06 17:23:37 UTC

  FreeBSD src repository

  Modified files:
sbin/ipfwipfw2.c 
  Log:
  SVN rev 182823 on 2008-09-06 17:23:37Z by rik
  
  Use IPFW_DEFAULT_RULE instead of hardcoded value since now it is
  available.
  
  MFC after:  5 days.
  
  Revision  ChangesPath
  1.121 +9 -8  src/sbin/ipfw/ipfw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/natd natd.c

2008-09-06 Thread Roman Kurakin
rik 2008-09-06 17:26:52 UTC

  FreeBSD src repository

  Modified files:
sbin/natdnatd.c 
  Log:
  SVN rev 182825 on 2008-09-06 17:26:52Z by rik
  
  Check rule numbers against maximum value to avoid rules cleanup due
  to overflow.
  
  MFC after:  5 days.
  
  Revision  ChangesPath
  1.54  +24 -0 src/sbin/natd/natd.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sys/netinet ip_fw.h ip_fw2.c

2008-09-06 Thread Roman Kurakin

I wonder, should I update __FreeBSD_version? Can't decide ...

rik

Roman Kurakin wrote:

rik 2008-09-06 16:47:07 UTC

  FreeBSD src repository

  Modified files:
sys/netinet  ip_fw.h ip_fw2.c 
  Log:

  SVN rev 182818 on 2008-09-06 16:47:07Z by rik
  
  Export the IPFW_DEFAULT_RULE outside ip_fw2.c.  This number in not only

  the default rule number but also the maximum rule number.  User space
  software such as ipfw and natd should be aware of its value.  The
  software that already includes ip_fw.h should use the defined value.  All
  other a expected to use sysctl (as discussed on net@).
  
  MFC after: 5 days.

  Discussed on: net@
  
  Revision  ChangesPath

  1.115 +5 -0  src/sys/netinet/ip_fw.h
  1.192 +2 -1  src/sys/netinet/ip_fw2.c
  


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sys/netinet ip_fw.h ip_fw2.c

2008-09-07 Thread Roman Kurakin

Ganbold wrote:

Roman Kurakin wrote:

rik 2008-09-06 16:47:07 UTC

  FreeBSD src repository

  Modified files:
sys/netinet  ip_fw.h ip_fw2.c   Log:
  SVN rev 182818 on 2008-09-06 16:47:07Z by rik
Export the IPFW_DEFAULT_RULE outside ip_fw2.c.  This number in 
not only

  the default rule number but also the maximum rule number.  User space
  software such as ipfw and natd should be aware of its value.  The
  software that already includes ip_fw.h should use the defined 
value.  All

  other a expected to use sysctl (as discussed on net@).
  

Well, how about IPFW_TABLES_MAX ?

http://www.freebsd.org/cgi/query-pr.cgi?pr=bin/127058

I'll check it.

rik


thanks,

Ganbold


MFC after: 5 days.
  Discussed on: net@
Revision  ChangesPath
  1.115 +5 -0  src/sys/netinet/ip_fw.h
  1.192 +2 -1  src/sys/netinet/ip_fw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"



  





___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/netinet ip_fw.h

2008-09-13 Thread Roman Kurakin
rik 2008-09-14 06:14:06 UTC

  FreeBSD src repository

  Modified files:
sys/netinet  ip_fw.h 
  Log:
  SVN rev 183012 on 2008-09-14 06:14:06Z by rik
  
  Make the commet for the default rule number more clear.
  
  Submitted by:   yar@
  
  Revision  ChangesPath
  1.116 +4 -1  src/sys/netinet/ip_fw.h
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/netinet ip_fw2.c

2008-09-14 Thread Roman Kurakin
rik 2008-09-14 09:24:12 UTC

  FreeBSD src repository

  Modified files:
sys/netinet  ip_fw2.c 
  Log:
  SVN rev 183015 on 2008-09-14 09:24:12Z by rik
  
  Export IPFW_TABLES_MAX via sysctl.  Part of PR: 127058.
  
  PR: 127058
  
  Revision  ChangesPath
  1.193 +2 -0  src/sys/netinet/ip_fw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sys/netinet ip_fw2.c

2008-09-17 Thread Roman Kurakin

Ganbold wrote:

Roman Kurakin wrote:

rik 2008-09-14 09:24:12 UTC

  FreeBSD src repository

  Modified files:
sys/netinet  ip_fw2.c   Log:
  SVN rev 183015 on 2008-09-14 09:24:12Z by rik
Export IPFW_TABLES_MAX via sysctl.  Part of PR: 127058.
  


How about the rest of PR?

Working on this. To much ENOTIME to move faster. I just need to be sure
that there is no more optimal solution. As you may see I've reduced one
useless variable in the committed variant. I already have some ideas about
the rest of PR, just need to recheck them and finally test the result.

By the way, are you expecting this to hit the upcoming release or it is fine
to just hit the current for now?

rik

thanks,

Ganbold


PR: 127058
Revision  ChangesPath
  1.193 +2 -0  src/sys/netinet/ip_fw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"



  




___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/ipfw ipfw2.c

2008-09-20 Thread Roman Kurakin
rik 2008-09-20 15:54:22 UTC

  FreeBSD src repository

  Modified files:
sbin/ipfwipfw2.c 
  Log:
  SVN rev 183205 on 2008-09-20 15:54:22Z by rik
  
  Do not do the useless job for an empty table.
  
  MFC after:  1 month
  
  Revision  ChangesPath
  1.122 +5 -0  src/sbin/ipfw/ipfw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/ipfw ipfw2.c

2008-09-20 Thread Roman Kurakin
rik 2008-09-20 16:17:49 UTC

  FreeBSD src repository

  Modified files:
sbin/ipfwipfw2.c 
  Log:
  SVN rev 183206 on 2008-09-20 16:17:49Z by rik
  
  Style(9) the show_nat() function.
  
  Revision  ChangesPath
  1.123 +2 -1  src/sbin/ipfw/ipfw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/ipfw ipfw2.c

2008-09-20 Thread Roman Kurakin
rik 2008-09-20 16:46:19 UTC

  FreeBSD src repository

  Modified files:
sbin/ipfwipfw2.c 
  Log:
  SVN rev 183208 on 2008-09-20 16:46:19Z by rik
  
  Remove some unused variables.
  
  Revision  ChangesPath
  1.124 +3 -4  src/sbin/ipfw/ipfw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/ipfw ipfw2.c

2008-09-20 Thread Roman Kurakin
rik 2008-09-20 19:25:02 UTC

  FreeBSD src repository

  Modified files:
sbin/ipfwipfw2.c 
  Log:
  SVN rev 183209 on 2008-09-20 19:25:02Z by rik
  
  Free allocated memory.
  
  Revision  ChangesPath
  1.125 +1 -0  src/sbin/ipfw/ipfw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/ipfw ipfw2.c

2008-09-21 Thread Roman Kurakin
rik 2008-09-21 12:54:09 UTC

  FreeBSD src repository

  Modified files:
sbin/ipfwipfw2.c 
  Log:
  SVN rev 183228 on 2008-09-21 12:54:09Z by rik
  
  Move table list to a separate function.
  
  Revision  ChangesPath
  1.126 +46 -37src/sbin/ipfw/ipfw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/netinet ip_fw.h

2008-09-21 Thread Roman Kurakin
rik 2008-09-21 20:42:42 UTC

  FreeBSD src repository

  Modified files:
sys/netinet  ip_fw.h 
  Log:
  SVN rev 183240 on 2008-09-21 20:42:42Z by rik
  
  Export IPFW_TABLES_MAX value for compiled in defaults.
  
  Revision  ChangesPath
  1.117 +6 -1  src/sys/netinet/ip_fw.h
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/ipfw ipfw2.c

2008-09-21 Thread Roman Kurakin
rik 2008-09-21 21:46:56 UTC

  FreeBSD src repository

  Modified files:
sbin/ipfwipfw2.c 
  Log:
  SVN rev 183241 on 2008-09-21 21:46:56Z by rik
  
  Add the check of the table number.
  
  Revision  ChangesPath
  1.127 +17 -0 src/sbin/ipfw/ipfw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sbin/ipfw ipfw2.c

2008-09-21 Thread Roman Kurakin

Giorgos Keramidas wrote:

keramida2008-09-22 04:12:27 UTC

  FreeBSD src repository

  Modified files:
sbin/ipfwipfw2.c 
  Log:

  SVN rev 183263 on 2008-09-22 04:12:27Z by keramida
  
  Unbreak the build.
  
  Revision  ChangesPath

  1.128 +1 -1  src/sbin/ipfw/ipfw2.c
  

Thanks!

PS.
Never do partial commits before going to sleep ;-)

rik


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: www/en/search Makefile Makefile.inc www/en/search/opensearch Makefile man.xml opensearch.js ports.xml query-pr.xml

2008-09-23 Thread Roman Kurakin
How about adding the hints and the links to google rambler etc to ask 
them to

search freebsd.org?

rik

Wolfram Schneider wrote:

wosch   2008-09-22 18:56:22 UTC

  FreeBSD doc repository

  Modified files:
en/searchMakefile 
  Added files:
en/searchMakefile.inc 
en/search/opensearch Makefile man.xml opensearch.js ports.xml 
 query-pr.xml 
  Log:

  Add OpenSearch plugins for man.cgi, ports.cgi and query-pr.cgi
  
  Revision  ChangesPath

  1.10  +3 -1  www/en/search/Makefile
  1.1   +4 -0  www/en/search/Makefile.inc (new)
  1.1   +17 -0 www/en/search/opensearch/Makefile (new)
  1.1   +13 -0 www/en/search/opensearch/man.xml (new)
  1.1   +10 -0 www/en/search/opensearch/opensearch.js (new)
  1.1   +13 -0 www/en/search/opensearch/ports.xml (new)
  1.1   +13 -0 www/en/search/opensearch/query-pr.xml (new)
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-doc
To unsubscribe, send any mail to "[EMAIL PROTECTED]"
  


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/ipfw ipfw2.c src/sbin/natd natd.c src/sys/netinet ip_fw.h ip_fw2.c

2008-09-23 Thread Roman Kurakin
rik 2008-09-23 10:36:37 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_7)
sbin/ipfwipfw2.c 
sbin/natdnatd.c 
sys/netinet  ip_fw.h ip_fw2.c 
  Log:
  SVN rev 183293 on 2008-09-23 10:36:37Z by rik
  
  MFH: 182818, 182823, 182825, 183012 - IPFW_DEFAULT_RULE related fixes.
  
   New Revision: 182818
   URL: http://svn.freebsd.org/changeset/base/182818
  
   Log:
Export the IPFW_DEFAULT_RULE outside ip_fw2.c.  This number in not only
the default rule number but also the maximum rule number.  User space
software such as ipfw and natd should be aware of its value.  The
software that already includes ip_fw.h should use the defined value.  All
other a expected to use sysctl (as discussed on net@).
  
MFC after: 5 days.
Discussed on: net@
  
   Modified:
head/sys/netinet/ip_fw.h
head/sys/netinet/ip_fw2.c
  
   New Revision: 182823
   URL: http://svn.freebsd.org/changeset/base/182823
  
   Log:
Use IPFW_DEFAULT_RULE instead of hardcoded value since now it is
available.
  
MFC after:5 days.
  
   Modified:
head/sbin/ipfw/ipfw2.c
  
   New Revision: 182825
   URL: http://svn.freebsd.org/changeset/base/182825
  
   Log:
Check rule numbers against maximum value to avoid rules cleanup due
to overflow.
  
MFC after:5 days.
  
   Modified:
head/sbin/natd/natd.c
  
   New Revision: 183012
   URL: http://svn.freebsd.org/changeset/base/183012
  
   Log:
Make the commet for the default rule number more clear.
  
Submitted by:yar@
  
   Modified:
head/sys/netinet/ip_fw.h
  
  Approved by:re (kensmith)
  
  RevisionChangesPath
  1.108.2.10  +9 -8  src/sbin/ipfw/ipfw2.c
  1.50.2.1+24 -0 src/sbin/natd/natd.c
  1.110.2.5   +8 -0  src/sys/netinet/ip_fw.h
  1.175.2.10  +2 -1  src/sys/netinet/ip_fw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/ipfw ipfw2.c

2008-09-27 Thread Roman Kurakin
rik 2008-09-27 14:30:34 UTC

  FreeBSD src repository

  Modified files:
sbin/ipfwipfw2.c 
  Log:
  SVN rev 183407 on 2008-09-27 14:30:34Z by rik
  
  Add keyword all in addtion to the table number for the 'list' and the
  'flush' actions on tables.  Part of PR: 127058.
  
  PR: 127058 (based on)
  MFC after:  1 month
  
  Revision  ChangesPath
  1.129 +29 -8 src/sbin/ipfw/ipfw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/ipfw ipfw.8

2008-09-27 Thread Roman Kurakin
rik 2008-09-27 15:09:00 UTC

  FreeBSD src repository

  Modified files:
sbin/ipfwipfw.8 
  Log:
  SVN rev 183408 on 2008-09-27 15:09:00Z by rik
  
  * add all keyword for table list & flush actions.
  * add tables_max sysctl.
  * add default_rule sysctl.
  
  PR: 127058 (partially)
  
  Revision  ChangesPath
  1.217 +14 -3 src/sbin/ipfw/ipfw.8
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sbin/ipfw ipfw2.c

2008-09-27 Thread Roman Kurakin

Ganbold wrote:

Roman Kurakin wrote:

rik 2008-09-27 14:30:34 UTC

  FreeBSD src repository

  Modified files:
sbin/ipfwipfw2.c   Log:
  SVN rev 183407 on 2008-09-27 14:30:34Z by rik
Add keyword all in addtion to the table number for the 'list' and 
the

  'flush' actions on tables.  Part of PR: 127058.
  


Thanks a lot, Roman.

With the last one just committed the all parts of PR should now be done.
So please test all the parts (also 'table all flush' as a bonus) and I 
will close

the PR.

rik

Ganbold


PR: 127058 (based on)
  MFC after:  1 month
Revision  ChangesPath
  1.129 +29 -8 src/sbin/ipfw/ipfw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"



  




___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sbin/ipfw ipfw2.c

2008-09-27 Thread Roman Kurakin
rik 2008-09-27 15:58:54 UTC

  FreeBSD src repository

  Modified files:
sbin/ipfwipfw2.c 
  Log:
  SVN rev 183415 on 2008-09-27 15:58:54Z by rik
  
  Fix the build.
  
  Noted by: ganbold@
  
  Revision  ChangesPath
  1.130 +1 -1  src/sbin/ipfw/ipfw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sbin/ipfw ipfw2.c

2008-09-27 Thread Roman Kurakin

Ganbold wrote:

Roman,

Roman Kurakin wrote:

Ganbold wrote:

Roman Kurakin wrote:

rik 2008-09-27 14:30:34 UTC

  FreeBSD src repository

  Modified files:
sbin/ipfwipfw2.c   Log:
  SVN rev 183407 on 2008-09-27 14:30:34Z by rik
Add keyword all in addtion to the table number for the 'list' 
and the

  'flush' actions on tables.  Part of PR: 127058.
  


Thanks a lot, Roman.

With the last one just committed the all parts of PR should now be done.
So please test all the parts (also 'table all flush' as a bonus) and 
I will close

the PR.

...
cc -O2 -pipe  -fstack-protector -Wno-pointer-sign -c 
/usr/src/sbin/ipfw/ipfw2.c

/usr/src/sbin/ipfw/ipfw2.c: In function 'table_handler':
/usr/src/sbin/ipfw/ipfw2.c:5969: error: too few arguments to function 
'table_list'

*** Error code 1

Stop in /usr/src/sbin/ipfw.

Fixed, thanks. Hate manual merge via cut & paste. Pointy hat to me.

rik



You forgot to add is_all as argument to table_list():
...
   } else if (_substrcmp(*av, "list") == 0) {
   a = is_all ? tables_max : (ent.tbl + 1);
   do {
 table_list(ent, is_all);
   
   } while (++ent.tbl < a);
   } else
...

Corrected version works, lists all tables' IP and flushes all.
Will check man page shortly.

thanks,

Ganbold



rik

Ganbold


PR: 127058 (based on)
  MFC after:  1 month
Revision  ChangesPath
  1.129 +29 -8 src/sbin/ipfw/ipfw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"



  




___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"








___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sbin/ipfw ipfw2.c

2008-09-27 Thread Roman Kurakin

Ganbold wrote:

Roman Kurakin wrote:

rik 2008-09-27 15:58:54 UTC

  FreeBSD src repository

  Modified files:
sbin/ipfwipfw2.c   Log:
  SVN rev 183415 on 2008-09-27 15:58:54Z by rik
Fix the build.
  


Checked man page, looks ok :)
Ok, if nothing else broken will be found, I'll close PR within a couple 
of days. ;-)


rik

thanks,

Ganbold


Noted by: ganbold@
Revision  ChangesPath
  1.130 +1 -1  src/sbin/ipfw/ipfw2.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"



  





___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sys/netinet ip_fw2.c

2008-09-30 Thread Roman Kurakin

Roman Divacky wrote:

On Tue, Sep 30, 2008 at 05:19:57PM +0100, Robert Watson wrote:
  

On Sun, 28 Sep 2008, Ganbold wrote:


Indeed -- when an inpcb doesn't have a socket, ipfw will go ahead and do 
a lookup for an inpcb even though one is passed down.  I've committed a 
change that short-circuits that and marks the credential lookup as 
failed. Give it a try now?

Thanks a lot, Robert, it was indeed simple effective fix. So far no crash 
:) With loads like pkg_adding emacs (which adds bunch of other packages) 
on plain CURRENT, downloading FreeBSD ISO with axel (20 simultaneous 
connection) through http works fine here.
  
Good news.  We'll want to keep an eye on this one as the 7.0 release cycle 
progresses, and there may be other unexpected edge case problems from the 
rwlock change.  On the whole it seems to have been very successful, but the 
view that -CURRENT doesn't receive a whole lot of stress testing is 
reinforced...



I think this is a little different case... I guess people are willing to
test -CURRENT on their desktops etc. but not on "servers". ie. when you
have immediate access to the machine you easily use -CURRENT but not
on the remote server.

Also, people don't tend to run firewalls on their desktops (as opposed to
servers where they dont). This is why I think this bug slipped. Not that 
-CURRENT is so badly tested...
  

It looks that people are not so paranoid as they should be ...
But probably they paranoid enough to not use the current ;-)

rik

roman
  


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/dev/ce if_ce.c

2007-03-25 Thread Roman Kurakin
rik 2007-03-25 20:21:31 UTC

  FreeBSD src repository

  Modified files:
sys/dev/ce   if_ce.c 
  Log:
  Remove ancient preprocessor code. Fix module compilation.
  
  Requested by:   n_hibma
  
  Revision  ChangesPath
  1.8   +1 -9  src/sys/dev/ce/if_ce.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/net if_bridge.c

2007-03-25 Thread Roman Kurakin
rik 2007-03-25 21:33:38 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_6)
sys/net  if_bridge.c 
  Log:
  MFC: -j 1.95 -j 1.96
rik 2007-03-18 23:28:53 UTC
  
FreeBSD src repository
  
Modified files:
  sys/net  if_bridge.c
Log:
Give a chance for packet to appear with a correct input interfaces
in case of multiple interfaces with the same MAC in the same bridge.
This commit do not solve the entire problem. Only case where packet
arrived from such interface.
  
PR: kern/109815
MFC after:  7 days
Submitted by:   Eygene Ryabinkin and rik@
Discussed with: bms@, thompsa@, yar@
  
Revision  ChangesPath
1.96  +50 -30src/sys/net/if_bridge.c
  
  Revision   ChangesPath
  1.11.2.48  +50 -30src/sys/net/if_bridge.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sys/net if_bridge.c

2007-03-25 Thread Roman Kurakin

Should I bother about RELENG_5?

rik

Roman Kurakin wrote:

rik 2007-03-25 21:33:38 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_6)
sys/net  if_bridge.c 
  Log:

  MFC: -j 1.95 -j 1.96
rik 2007-03-18 23:28:53 UTC
  
FreeBSD src repository
  
Modified files:

  sys/net  if_bridge.c
Log:
Give a chance for packet to appear with a correct input interfaces
in case of multiple interfaces with the same MAC in the same bridge.
This commit do not solve the entire problem. Only case where packet
arrived from such interface.
  
PR: kern/109815

MFC after:  7 days
Submitted by:   Eygene Ryabinkin and rik@
Discussed with: bms@, thompsa@, yar@
  
Revision  ChangesPath

1.96  +50 -30src/sys/net/if_bridge.c
  
  Revision   ChangesPath

  1.11.2.48  +50 -30src/sys/net/if_bridge.c
  


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/man/man4 if_bridge.4

2007-04-02 Thread Roman Kurakin
rik 2007-04-02 22:04:21 UTC

  FreeBSD src repository

  Modified files:
share/man/man4   if_bridge.4 
  Log:
  Add description how the filter works in case of multiple interfaces
  with the same MAC.
  
  PR: kern/109815
  MFC after:  7 days
  Submitted by:   Eygene Ryabinkin
  Glanced by: rik (all pointy hats are mine)
  Discussed with: julian@, rik@
  
  Revision  ChangesPath
  1.27  +92 -3 src/share/man/man4/if_bridge.4
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/man/man4 if_bridge.4

2007-04-03 Thread Roman Kurakin
rik 2007-04-03 14:36:18 UTC

  FreeBSD src repository

  Modified files:
share/man/man4   if_bridge.4 
  Log:
  s/if_vlan/vlan/
  
  Noted by: brueffer
  
  Revision  ChangesPath
  1.28  +2 -2  src/share/man/man4/if_bridge.4
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/share/man/man4 if_bridge.4

2007-04-08 Thread Roman Kurakin
rik 2007-04-09 00:07:54 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_6)
share/man/man4   if_bridge.4 
  Log:
  MFC: -j 1.26 -j 1.28
  Log:
  Add description how the filter works in case of multiple interfaces
  with the same MAC.
  
  PR: kern/109815
  MFC after:  7 days
  Submitted by:   Eygene Ryabinkin
  Glanced by: rik (all pointy hats are mine)
  Discussed with: julian@, rik@
  
  Log:
  s/if_vlan/vlan/
  
  Noted by: brueffer
  
  Revision  ChangesPath
  1.5.2.15  +92 -3 src/share/man/man4/if_bridge.4
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src UPDATING

2007-04-14 Thread Roman Kurakin

By the way, is possible to do some dummy port that would represent
the kernel and/or base system to do things more automate?

rik

Gregory Neil Shapiro wrote:

gshapiro2007-04-14 16:26:01 UTC

  FreeBSD src repository

  Modified files:
.UPDATING 
  Log:

  Include a note about recompiling ports which use the base libmilter.
  
  Submitted by:   Matthew Seaman
  
  Revision  ChangesPath

  1.485 +5 -0  src/UPDATING
  


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src UPDATING

2007-04-15 Thread Roman Kurakin

Kris Kennaway wrote:

On Sun, Apr 15, 2007 at 04:36:43AM +0400, Roman Kurakin wrote:
  

By the way, is possible to do some dummy port that would represent
the kernel and/or base system to do things more automate?



Let's just say it's a very complicated project and leave it at that.
  
I understand that. Probably some one who is aware of all pitfalls will 
formulate
the task and will add it to the ideas list? It also may me good for the 
next SoC.


rik

Kris
  


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/usr.sbin/sysinstall main.c

2007-04-30 Thread Roman Kurakin

Hi,

Since there is some noise around this, could we just scream for a while
that code should be fixed but allow it to still work? After some time than
the majority of the buggy code will be  fixed we will stick to the std
behavior? IMHO this will be less painful.

rik

Andrey Chernov wrote:

On Tue, May 01, 2007 at 04:02:42AM +0400, Andrey Chernov wrote:
  

On Mon, Apr 30, 2007 at 06:57:17PM -0400, David Schultz wrote:


I think Alfred is absolutely right, and this is a pretty major
POLA violation. 
  
That's -current for. Do you suggest to wait yet more N years to commit 
exact that stuff?



Speaking about POLA, POLA says that valid call to setenv f.e. is in form
setenv("name", "value", 1);
it does not says that hacks like
setenv("name=value", "value", 1);
should be allowed and works.

Moreover, putenv() isn't BSD own function, and was incorrectly implemented 
initially in BSD. BSD implementation just violates original POLA for 
putenv() all other use.


Insisting to keep bug-to-bug compatibility forever leads to nowhere.
And increase porting efforts greately.

  


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/usr.sbin/sysinstall main.c

2007-05-01 Thread Roman Kurakin

Peter Jeremy wrote:

On 2007-May-01 10:48:28 +0400, Andrey Chernov <[EMAIL PROTECTED]> wrote:
  

On Mon, Apr 30, 2007 at 06:39:57PM -0700, Alfred Perlstein wrote:


Using the strategy "commit to -current then suffer the fallout"
is pretty bogus.
  
The only possible. Nobody can run all ports at once. Kris already promise 
all ports build results with those changes in, lets see.



Note that just building the ports with these changes will not demonstrate
much.  This change alters the functionality of putenv() rather than the
API/ABI so testing the change requires exercising the ports.  This is
a much more difficult task.
  
I suggest to install all ports sources and grep them at first. I am sure 
some of ports
could be marked as bug-less and other should be marked for exec-check or 
probably

for more accurate review not just grep.

rik
  
Apples and oranges. select is BSD own function unlike putenv which is not 
BSD own and initially adopted without too much care.



Then someone needs to fix the "HISTORY" section of getenv(3).  I've
looked thru the TUHS and CSRG files and it didn't exist in V7 or any
of the early BSDs.  I'm not sure when it really did appear.  getenv(3)
in 4.3reno doesn't claim compliance to any standard for putenv().

  


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: cvs commit: src/sys/kern kern_intr.c src/sys/sys interrupt.h

2007-05-02 Thread Roman Kurakin

Darren Reed wrote:

On Wed, May 02, 2007 at 06:15:13AM +, Nate Lawson wrote:
  

njl 2007-05-02 06:15:13 UTC

  FreeBSD src repository

  Modified files:(Branch: RELENG_6)
sys/kern kern_intr.c 
sys/sys  interrupt.h 
  Log:

  MFC: rate-check the interrupt storm message and bump the counter 500 -> 1000



Is this number, "500" or "1000" somehow "magical" for modern hardware?

If I had a 500MHZ, 1GHz, 1.5GHz, 2GHz, 2.5GHz machines, each with the
appropriate architecture, what would the correct value for this be?
Is i always 1000 or should it be calculated?
  
It is hard to calculate. You need to take into account also the 
particular BUS that
the set of devices is attached to, not only the speed of CPU that will 
serve this

interrupt rate.

rik

Darren
  


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvs commit: src/sys/net if_bridge.c

2007-03-18 Thread Roman Kurakin
rik 2007-03-18 23:28:53 UTC

  FreeBSD src repository

  Modified files:
sys/net  if_bridge.c 
  Log:
  Give a chance for packet to appear with a correct input interfaces
  in case of multiple interfaces with the same MAC in the same bridge.
  This commit do not solve the entire problem. Only case where packet
  arrived from such interface.
  
  PR: kern/109815
  MFC after:  7 days
  Submitted by:   Eygene Ryabinkin and rik@
  Discussed with: bms@, thompsa@, yar@
  
  Revision  ChangesPath
  1.96  +50 -30src/sys/net/if_bridge.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"