From owner-freebsd-hackers Sun Dec 8 7: 2:36 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E23BE37B401; Sun, 8 Dec 2002 07:02:31 -0800 (PST) Received: from angelica.unixdaemons.com (angelica.unixdaemons.com [209.148.64.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43B7243ED1; Sun, 8 Dec 2002 07:02:31 -0800 (PST) (envelope-from hiten@angelica.unixdaemons.com) Received: from angelica.unixdaemons.com (hiten@localhost.unixdaemons.com [127.0.0.1]) by angelica.unixdaemons.com (8.12.6/8.12.1) with ESMTP id gB8F2BhR070410; Sun, 8 Dec 2002 10:02:11 -0500 (EST) Received: (from hiten@localhost) by angelica.unixdaemons.com (8.12.6/8.12.1/Submit) id gB8F2BkM070409; Sun, 8 Dec 2002 10:02:11 -0500 (EST) (envelope-from hiten) Date: Sun, 8 Dec 2002 10:02:11 -0500 From: Hiten Pandya To: freebsd-hackers@FreeBSD.org Cc: phk@FreeBSD.org Subject: System-wide totals via sysctl (struct vmtotal) Message-ID: <20021208150211.GA68549@angelica.unixdaemons.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="KsGdsel6WgEHnImy" Content-Disposition: inline User-Agent: Mutt/1.4i X-Operating-System: FreeBSD i386 X-Public-Key: http://www.pittgoth.com/~hiten/pubkey.asc X-URL: http://www.unixdaemons.com/~hiten X-PGP: http://pgp.mit.edu:11371/pks/lookup?search=Hiten+Pandya&op=index Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --KsGdsel6WgEHnImy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello Gang! Currently, people, the vm.vmmeter sysctl is "bogus and misleading". It refers to struct vmtotal, which gives us the "system wide totals", and does not relate/refer to struct vmmeter in _any_ way. It is silently skipped by sysctl -a listing, because there is no handler for it: # sysctl vm.vmmeter # nothing returned... # sysctl -ao vm.vmmeter vm.vmmeter: Format:S,vmtotal Length:48 Dump: .... It has been this from the days of 3.0-CURRENT, and earlier, I think. PR kern/5689 addressed this problem. Johan Karlsson assigned this PR to phk@ in 2000 (submitted: 1998), but no action was taken by anyone anyway, and eventually, patch was left to rot. Well, I have updated the patch for 3.0-CURRENT, for our latest -current, and also made one more change vmmeter->vmtotal, as requested in the PR. The patches are attached with this mail. I would be very grateful is someone can commit (and review) them for me. Cheers. P.S. http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/5689 -- Hiten Pandya (hiten@unixdaemons.com, hiten@uk.FreeBSD.org) http://www.unixdaemons.com/~hiten/ --KsGdsel6WgEHnImy Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="sysctl-vmtotal.patch" Index: sbin/sysctl/sysctl.c =================================================================== RCS file: /home/ncvs/src/sbin/sysctl/sysctl.c,v retrieving revision 1.48 diff -u -r1.48 sysctl.c --- sbin/sysctl/sysctl.c 2002/11/12 21:18:21 1.48 +++ sbin/sysctl/sysctl.c 2002/12/08 14:58:56 @@ -54,6 +54,7 @@ #include #include #include +#include #include #include @@ -323,6 +324,29 @@ } static int +S_vmtotal(int l2, void *p) +{ + struct vmtotal *v = (struct vmtotal *)p; + + if (l2 != sizeof(*v)) { + warnx("S_vmtotal %d != %d", l2, sizeof(*v)); + return (0); + } + + printf("\nSystem wide totals computed every five seconds:\n"); + printf("===============================================\n"); + printf("Processes: (RUNQ:\t %hu Disk Wait: %hu Page Wait: %hu Sleep: %hu)\n", + v->t_rq, v->t_dw, v->t_pw, v->t_sl); + printf("Virtual Memory:\t\t (Total: %hu Active %hu)\n", v->t_vm, v->t_avm); + printf("Real Memory:\t\t (Total: %hu Active %hu)\n", v->t_rm, v->t_arm); + printf("Shared Virtual Memory:\t (Total: %hu Active: %hu)\n", v->t_vmshr, v->t_avmshr); + printf("Shared Real Memory:\t (Total: %hu Active: %hu)\n", v->t_rmshr, v->t_armshr); + printf("Free Memory Pages:\t %hu\n", v->t_free); + + return (0); +} + +static int T_dev_t(int l2, void *p) { dev_t *d = (dev_t *)p; @@ -587,6 +611,8 @@ func = S_timeval; else if (strcmp(fmt, "S,loadavg") == 0) func = S_loadavg; + else if (strcmp(fmt, "S,vmtotal") == 0) + func = S_vmtotal; else if (strcmp(fmt, "T,dev_t") == 0) func = T_dev_t; else Index: sys/vm/vm_meter.c =================================================================== RCS file: /home/ncvs/src/sys/vm/vm_meter.c,v retrieving revision 1.66 diff -u -r1.66 vm_meter.c --- sys/vm/vm_meter.c 2002/10/02 20:31:47 1.66 +++ sys/vm/vm_meter.c 2002/12/08 14:59:01 @@ -222,7 +222,7 @@ return(error); } -SYSCTL_PROC(_vm, VM_METER, vmmeter, CTLTYPE_OPAQUE|CTLFLAG_RD, +SYSCTL_PROC(_vm, VM_TOTAL, vmtotal, CTLTYPE_OPAQUE|CTLFLAG_RD, 0, sizeof(struct vmtotal), vmtotal, "S,vmtotal", "System virtual memory statistics"); SYSCTL_NODE(_vm, OID_AUTO, stats, CTLFLAG_RW, 0, "VM meter stats"); Index: sys/vm/vm_param.h =================================================================== RCS file: /home/ncvs/src/sys/vm/vm_param.h,v retrieving revision 1.15 diff -u -r1.15 vm_param.h --- sys/vm/vm_param.h 2001/10/10 23:06:54 1.15 +++ sys/vm/vm_param.h 2002/12/08 14:59:02 @@ -76,7 +76,7 @@ /* * CTL_VM identifiers */ -#define VM_METER 1 /* struct vmmeter */ +#define VM_TOTAL 1 /* struct vmtotal */ #define VM_LOADAVG 2 /* struct loadavg */ #define VM_V_FREE_MIN 3 /* cnt.v_free_min */ #define VM_V_FREE_TARGET 4 /* cnt.v_free_target */ @@ -91,7 +91,7 @@ #define CTL_VM_NAMES { \ { 0, 0 }, \ - { "vmmeter", CTLTYPE_STRUCT }, \ + { "vmtotal", CTLTYPE_STRUCT }, \ { "loadavg", CTLTYPE_STRUCT }, \ { "v_free_min", CTLTYPE_INT }, \ { "v_free_target", CTLTYPE_INT }, \ Index: usr.bin/systat/vmstat.c =================================================================== RCS file: /home/ncvs/src/usr.bin/systat/vmstat.c,v retrieving revision 1.52 diff -u -r1.52 vmstat.c --- usr.bin/systat/vmstat.c 2002/06/06 23:01:50 1.52 +++ usr.bin/systat/vmstat.c 2002/12/08 14:59:05 @@ -784,7 +784,7 @@ size = sizeof(ls->Total); mib[0] = CTL_VM; - mib[1] = VM_METER; + mib[1] = VM_TOTAL; if (sysctl(mib, 2, &ls->Total, &size, NULL, 0) < 0) { error("Can't get kernel info: %s\n", strerror(errno)); bzero(&ls->Total, sizeof(ls->Total)); Index: usr.bin/vmstat/vmstat.c =================================================================== RCS file: /home/ncvs/src/usr.bin/vmstat/vmstat.c,v retrieving revision 1.59 diff -u -r1.59 vmstat.c --- usr.bin/vmstat/vmstat.c 2002/08/09 15:47:43 1.59 +++ usr.bin/vmstat/vmstat.c 2002/12/08 14:59:07 @@ -472,7 +472,7 @@ kread(X_SUM, &sum, sizeof(sum)); size = sizeof(total); mib[0] = CTL_VM; - mib[1] = VM_METER; + mib[1] = VM_TOTAL; if (sysctl(mib, 2, &total, &size, NULL, 0) < 0) { (void)printf("Can't get kerninfo: %s\n", strerror(errno)); --KsGdsel6WgEHnImy-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Sun Dec 8 13:23: 1 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EA3037B401 for ; Sun, 8 Dec 2002 13:23:00 -0800 (PST) Received: from warez.scriptkiddie.org (uswest-dsl-142-38.cortland.com [209.162.142.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18DCE43E4A for ; Sun, 8 Dec 2002 13:22:56 -0800 (PST) (envelope-from lamont@scriptkiddie.org) Received: from [192.168.69.11] (unknown [192.168.69.11]) by warez.scriptkiddie.org (Postfix) with ESMTP id C3BF362D1A for ; Sun, 8 Dec 2002 13:22:49 -0800 (PST) Date: Sun, 8 Dec 2002 13:22:49 -0800 (PST) From: Lamont Granquist To: freebsd-hackers@freebsd.org Subject: CVS_LOCAL_BRANCH_NUM? Message-ID: <20021208112628.H11375-100000@coredump.scriptkiddie.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've been struggling all weekend to setup a local CVS repo mirror, and I guess I've done that successfully, but I can't figure out what is going on with CVS_LOCAL_BRANCH_NUM. My understanding is that if I set it to a large number "63000" that it should tag branches that I make with values roughly that large. You can see from below that what I'm getting though is low-numbered branches. I'm confused. This is what I did on both -current and 4.6-release: setenv CVS_LOCAL_BRANCH_NUM 63000 cvs rtag -b -r RELENG_4_7 RELENG_4_LCG src And this is what I get -- shouldn't that be something like 1.229.63000? cvs status UPDATING =================================================================== File: UPDATING Status: Up-to-date Working revision: 1.229 Repository revision: 1.229 /cvs/src/UPDATING,v Sticky Tag: RELENG_4_LCG (branch: 1.229.4) Sticky Date: (none) Sticky Options: (none) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Sun Dec 8 17:22:43 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6464437B401 for ; Sun, 8 Dec 2002 17:22:41 -0800 (PST) Received: from warez.scriptkiddie.org (uswest-dsl-142-38.cortland.com [209.162.142.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28CE643E4A for ; Sun, 8 Dec 2002 17:22:37 -0800 (PST) (envelope-from lamont@scriptkiddie.org) Received: from [192.168.69.11] (unknown [192.168.69.11]) by warez.scriptkiddie.org (Postfix) with ESMTP id 6FD0862D1A for ; Sun, 8 Dec 2002 17:22:24 -0800 (PST) Date: Sun, 8 Dec 2002 17:22:24 -0800 (PST) From: Lamont Granquist To: freebsd-hackers@freebsd.org Subject: help compiling propolice gcc Message-ID: <20021208171541.T12569-100000@coredump.scriptkiddie.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm trying to follow these instructions to build 4.7 with the propolice modifications to the gcc compiler: http://www.trl.ibm.com/projects/security/ssp/buildfreebsd.html I'm starting with an absolutely fresh cvs checkout and i've nuked my /usr/obj tree. What I'm getting is in this step: cd /usr/src/gnu/usr.bin/cc make depend && make all install I'm getting this error in the build: ---------------------------------------------------------------------- cc -O -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/usr\" -I/usr/src/gnu/usr.bin/cc/cc1/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc1/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc1/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc1/../../../../contrib/gcc/config -I. -static -o cc1 c-parse.o c-lang.o c-decl.o c-lex.o /usr/src/gnu/usr.bin/cc/cc1/../cc_int/libcc_int.a cc: /usr/src/gnu/usr.bin/cc/cc1/../cc_int/libcc_int.a: No such file or directory *** Error code 1 Stop in /usr/src/gnu/usr.bin/cc/cc1. *** Error code 1 Stop in /usr/src/gnu/usr.bin/cc. ------------------------------------------------------------------------ And if I try to go into /usr/src/gnu/usr.bin/cc/cc_int and do a make I get only this: Warning: Object directory not changed from original /usr/src/gnu/usr.bin/cc/cc_int Can anyone suggest how to build gcc "standalone" like this? Or if that shouldn't be supported is there a better build procedure that you should follow to upgrade to the propolice compiler? I know I could build+install the world and then do it again to recompile with propolice, but a shortcut in that process would be a good thing. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Sun Dec 8 17:28: 9 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCCA737B401 for ; Sun, 8 Dec 2002 17:28:07 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-64-169-104-228.dsl.lsan03.pacbell.net [64.169.104.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE3CC43E4A for ; Sun, 8 Dec 2002 17:28:06 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id D7F0366BE3; Sun, 8 Dec 2002 17:28:04 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id E389D12E8; Sun, 8 Dec 2002 17:28:03 -0800 (PST) Date: Sun, 8 Dec 2002 17:28:03 -0800 From: Kris Kennaway To: Lamont Granquist Cc: freebsd-hackers@freebsd.org Subject: Re: help compiling propolice gcc Message-ID: <20021209012803.GA40767@rot13.obsecurity.org> References: <20021208171541.T12569-100000@coredump.scriptkiddie.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2fHTh5uZTiUOsy+g" Content-Disposition: inline In-Reply-To: <20021208171541.T12569-100000@coredump.scriptkiddie.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --2fHTh5uZTiUOsy+g Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Dec 08, 2002 at 05:22:24PM -0800, Lamont Granquist wrote: > And if I try to go into /usr/src/gnu/usr.bin/cc/cc_int and do a make I get > only this: >=20 > Warning: Object directory not changed from original > /usr/src/gnu/usr.bin/cc/cc_int This indicates you probably have stale cruft in your source tree. Do the following: cd /usr/src make cleandir && make cleandir and try again. Kris --2fHTh5uZTiUOsy+g Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE98/GjWry0BWjoQKURAmYrAJ9uheFp4MxphElaRiMYmGSNhQeB1gCbBKiI gSQ8kAS4ZLxgDSunJF/NWH4= =Xxs6 -----END PGP SIGNATURE----- --2fHTh5uZTiUOsy+g-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Sun Dec 8 18: 9: 3 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11BE437B401 for ; Sun, 8 Dec 2002 18:09:02 -0800 (PST) Received: from warez.scriptkiddie.org (uswest-dsl-142-38.cortland.com [209.162.142.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2D3443EDC for ; Sun, 8 Dec 2002 18:09:01 -0800 (PST) (envelope-from lamont@scriptkiddie.org) Received: from [192.168.69.11] (unknown [192.168.69.11]) by warez.scriptkiddie.org (Postfix) with ESMTP id 3AC3462D1A; Sun, 8 Dec 2002 18:09:01 -0800 (PST) Date: Sun, 8 Dec 2002 18:09:01 -0800 (PST) From: Lamont Granquist To: Kris Kennaway Cc: freebsd-hackers@freebsd.org Subject: Re: help compiling propolice gcc In-Reply-To: <20021209012803.GA40767@rot13.obsecurity.org> Message-ID: <20021208180552.D12741-100000@coredump.scriptkiddie.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 8 Dec 2002, Kris Kennaway wrote: > On Sun, Dec 08, 2002 at 05:22:24PM -0800, Lamont Granquist wrote: > > > And if I try to go into /usr/src/gnu/usr.bin/cc/cc_int and do a make I get > > only this: > > > > Warning: Object directory not changed from original > > /usr/src/gnu/usr.bin/cc/cc_int > > This indicates you probably have stale cruft in your source tree. Do > the following: > > cd /usr/src > make cleandir && make cleandir > > and try again. nope, it was *clean*, i did an rm -rf /usr/src /usr/obj and then a fresh checkout into /usr/src. i made it work using something like: cd /usr/src/gnu/usr.bin/cc make depend cd /usr/src/gnu/usr.bin/cc/cc_int make libcc_int.a cd /usr/src/gnu/usr.bin/cc/cc_fbsd make libcc_fbsd.a cd /usr/src/gnu/usr.bin/cc make all install (if anyone else is interested in propolice i had to add protector.c to the cc_int/Makefile, my initial test program seems to be succesful -- if i get a succesful world out of it, i'll post instructions and fresh diff against 4.7) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Sun Dec 8 18:22:42 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB49337B401 for ; Sun, 8 Dec 2002 18:22:40 -0800 (PST) Received: from mail.rpi.edu (mail.rpi.edu [128.113.22.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47B3243EA9 for ; Sun, 8 Dec 2002 18:22:40 -0800 (PST) (envelope-from drosih@rpi.edu) Received: from [128.113.24.47] (gilead.netel.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.12.1/8.12.1) with ESMTP id gB92MYDD325308; Sun, 8 Dec 2002 21:22:34 -0500 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <20021208180552.D12741-100000@coredump.scriptkiddie.org> References: <20021208180552.D12741-100000@coredump.scriptkiddie.org> Date: Sun, 8 Dec 2002 21:22:33 -0500 To: Lamont Granquist , Kris Kennaway From: Garance A Drosihn Subject: Re: help compiling propolice gcc Cc: freebsd-hackers@FreeBSD.ORG Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Scanned-By: MIMEDefang 2.3 (www dot roaringpenguin dot com slash mimedefang) Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 6:09 PM -0800 12/8/02, Lamont Granquist wrote: >On Sun, 8 Dec 2002, Kris Kennaway wrote: >> On Sun, Dec 08, 2002 at 05:22:24PM -0800, Lamont Granquist wrote: >> > > > And if I try to go into /usr/src/gnu/usr.bin/cc/cc_int and do > > > a make I get only this: > > > >> > Warning: Object directory not changed from original >> > /usr/src/gnu/usr.bin/cc/cc_int >> > > This indicates you probably have stale cruft in your source tree. > > Do the following: > > >> cd /usr/src >> make cleandir && make cleandir >> >> and try again. > >nope, it was *clean*, i did an rm -rf /usr/src /usr/obj and then a >fresh checkout into /usr/src. > >i made it work using something like: > > cd /usr/src/gnu/usr.bin/cc > make depend > cd /usr/src/gnu/usr.bin/cc/cc_int > make libcc_int.a > cd /usr/src/gnu/usr.bin/cc/cc_fbsd > make libcc_fbsd.a > cd /usr/src/gnu/usr.bin/cc > make all install If you're going to jump into the middle of /usr/src to make something, then you should probably do: cd /usr/src/gnu/usr.bin/cc make obj make depend ...etc.... -- Garance Alistair Drosehn = gad@gilead.netel.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Sun Dec 8 19:18:25 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61A9637B401 for ; Sun, 8 Dec 2002 19:18:24 -0800 (PST) Received: from warez.scriptkiddie.org (uswest-dsl-142-38.cortland.com [209.162.142.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id D02CA43E4A for ; Sun, 8 Dec 2002 19:18:20 -0800 (PST) (envelope-from lamont@scriptkiddie.org) Received: from [192.168.69.11] (unknown [192.168.69.11]) by warez.scriptkiddie.org (Postfix) with ESMTP id 1908662D1A for ; Sun, 8 Dec 2002 19:18:20 -0800 (PST) Date: Sun, 8 Dec 2002 19:18:20 -0800 (PST) From: Lamont Granquist To: freebsd-hackers@FreeBSD.ORG Subject: Re: help compiling propolice gcc In-Reply-To: Message-ID: <20021208184050.U12741-100000@coredump.scriptkiddie.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 8 Dec 2002, Garance A Drosihn wrote: > If you're going to jump into the middle of /usr/src to make something, > then you should probably do: > cd /usr/src/gnu/usr.bin/cc > make obj > make depend > ...etc.... Thanks, that seems to have worked. I couldn't get libc to compile though. What does the build process use the system libc for? Are the static binaries compiled against that? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Sun Dec 8 20:54:35 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDB6637B401 for ; Sun, 8 Dec 2002 20:54:33 -0800 (PST) Received: from ns3.unixmexico.net (ns3.unixmexico.net [64.141.69.184]) by mx1.FreeBSD.org (Postfix) with SMTP id 4588443EBE for ; Sun, 8 Dec 2002 20:54:33 -0800 (PST) (envelope-from nbari@unixmexico.com) Received: (qmail 49322 invoked by uid 85); 9 Dec 2002 04:55:54 -0000 Received: from nbari@unixmexico.com by ns3.unixmexico.net by uid 82 with qmail-scanner-1.15 (hbedv: 6.16.0.0/6.16.0.17. Clear:. Processed in 0.200717 secs); 09 Dec 2002 04:55:54 -0000 Received: from unknown (HELO unixmexico.com) (127.0.0.1) by localhost.unixmexico.net with SMTP; 9 Dec 2002 04:55:54 -0000 Received: from 148.243.211.1 (SquirrelMail authenticated user nbari@unixmexico.com) by mail.unixmexico.com with HTTP; Sun, 8 Dec 2002 22:55:54 -0600 (CST) Message-ID: <26647.148.243.211.1.1039409754.squirrel@mail.unixmexico.com> Date: Sun, 8 Dec 2002 22:55:54 -0600 (CST) Subject: tail -f on webpage From: To: , X-Priority: 3 Importance: Normal X-Mailer: SquirrelMail (version 1.2.9) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all How can i make a tail -f and show the results in a web page with out having to reload the page every N seconds i am using PHP in a script like: but i have to relaod the page to view new results. any ideas ? thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Sun Dec 8 21:18:30 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C342037B401; Sun, 8 Dec 2002 21:18:29 -0800 (PST) Received: from hotmail.com (f55.law15.hotmail.com [64.4.23.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85F8A43E4A; Sun, 8 Dec 2002 21:18:29 -0800 (PST) (envelope-from soheil_hh@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 8 Dec 2002 21:18:28 -0800 Received: from 81.31.160.37 by lw15fd.law15.hotmail.msn.com with HTTP; Mon, 09 Dec 2002 05:18:28 GMT X-Originating-IP: [81.31.160.37] From: "soheil soheil" To: freebsd-net@freebsd.org Subject: Spoofing Another Host Packet From User Land Date: Mon, 09 Dec 2002 05:18:28 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 09 Dec 2002 05:18:28.0997 (UTC) FILETIME=[68848B50:01C29F42] Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear All I want to know if i can use SOCK_RAW to create and send another Host ( with another IP) Packet from my box. Sayin' in another way , i want to know if the kernel fill the ip:ip_src field of the packet throw out by SOCK_RAW ? if i can not do this by raw socket how can i do that ? THANX S,H,Y _________________________________________________________________ MSN 8 helps eliminate e-mail viruses. Get 2 months FREE*. http://join.msn.com/?page=features/virus To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Sun Dec 8 21:27:18 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6119C37B401; Sun, 8 Dec 2002 21:27:17 -0800 (PST) Received: from midway.uchicago.edu (midway.uchicago.edu [128.135.12.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id B424943EBE; Sun, 8 Dec 2002 21:27:16 -0800 (PST) (envelope-from dsyphers@uchicago.edu) Received: from Yggdrasil (adsl-68-20-22-119.dsl.chcgil.ameritech.net [68.20.22.119]) by midway.uchicago.edu (8.12.5/8.12.5) with ESMTP id gB95R5MU010035; Sun, 8 Dec 2002 23:27:05 -0600 (CST) Content-Type: text/plain; charset="iso-8859-1" From: David Syphers Reply-To: dsyphers@uchicago.edu To: Subject: Re: tail -f on webpage Date: Sun, 8 Dec 2002 23:27:05 -0600 User-Agent: KMail/1.4.3 References: <26647.148.243.211.1.1039409754.squirrel@mail.unixmexico.com> In-Reply-To: <26647.148.243.211.1.1039409754.squirrel@mail.unixmexico.com> Cc: , MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <200212082327.05038.dsyphers@uchicago.edu> Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sunday 08 December 2002 10:55 pm, nbari@unixmexico.com wrote: > Hi all > > How can i make a tail -f and show the results in a web page with > out having to reload the page every N seconds > > i am using PHP in a script like: > > $error_log = '/var/log/apache/log'; > passthru ("tail -f $error_log"); > ?> > > but i have to relaod the page to view new results. First of all, this is off-topic for any FreeBSD list. They're cc'd only to let them know someone has told you this. I would suggest trying a PHP list, but... ... you can't do this with PHP. You're viewing a (pure HTML) page generated by PHP, and for anything to change on it, the page needs to be regenerated, e.g. reloaded. -David -- On the whole I am against mass murder. I rarely commit it myself, and often find myself quite out of sympathy with those who make a habit of it. -Bernard Levin Astronomy and Astrophysics Center The University of Chicago To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Sun Dec 8 21:45:32 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C2DE37B401; Sun, 8 Dec 2002 21:45:31 -0800 (PST) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDADD43EC5; Sun, 8 Dec 2002 21:45:30 -0800 (PST) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.6/8.12.6) id gB95jM9m097981; Sun, 8 Dec 2002 23:45:22 -0600 (CST) (envelope-from dan) Date: Sun, 8 Dec 2002 23:45:22 -0600 From: Dan Nelson To: nbari@unixmexico.com Cc: freebsd-isp@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: tail -f on webpage Message-ID: <20021209054521.GB20704@dan.emsphone.com> References: <26647.148.243.211.1.1039409754.squirrel@mail.unixmexico.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <26647.148.243.211.1.1039409754.squirrel@mail.unixmexico.com> X-OS: FreeBSD 5.0-RC X-message-flag: Outlook Error User-Agent: Mutt/1.5.1i Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In the last episode (Dec 08), nbari@unixmexico.com said: > Hi all > > How can i make a tail -f and show the results in a web page with > out having to reload the page every N seconds > > i am using PHP in a script like: > > $error_log = '/var/log/apache/log'; > passthru ("tail -f $error_log"); > ?> The following 3-line CGI works fine: #! /bin/sh printf "Content-type: text/plain\r\n\r\n" tail -f /var/log/messages If you want a PHP solution, try a php mailinglist. -- Dan Nelson dnelson@allantgroup.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 4: 0:46 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FB4537B401 for ; Mon, 9 Dec 2002 04:00:45 -0800 (PST) Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F20F43EA9 for ; Mon, 9 Dec 2002 04:00:45 -0800 (PST) (envelope-from nectar@nectar.cc) Received: by gw.nectar.cc (Postfix, from userid 1001) id 771D89A; Mon, 9 Dec 2002 06:00:44 -0600 (CST) Date: Mon, 9 Dec 2002 06:00:44 -0600 From: "Jacques A. Vidrine" To: Lamont Granquist Cc: freebsd-hackers@freebsd.org Subject: Re: help compiling propolice gcc Message-ID: <20021209120044.GA36088@hellblazer.nectar.cc> Mail-Followup-To: "Jacques A. Vidrine" , Lamont Granquist , freebsd-hackers@freebsd.org References: <20021208171541.T12569-100000@coredump.scriptkiddie.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021208171541.T12569-100000@coredump.scriptkiddie.org> User-Agent: Mutt/1.3.27i X-Url: http://www.celabo.org/ Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Dec 08, 2002 at 05:22:24PM -0800, Lamont Granquist wrote: > I'm trying to follow these instructions to build 4.7 with the propolice > modifications to the gcc compiler: > > http://www.trl.ibm.com/projects/security/ssp/buildfreebsd.html > > I'm starting with an absolutely fresh cvs checkout and i've nuked my > /usr/obj tree. What I'm getting is in this step: You can't use IBM's procedure without a /usr/obj. Do a `make buildworld'. Cheers, -- Jacques A. Vidrine http://www.celabo.org/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 4:12:48 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BE1637B401 for ; Mon, 9 Dec 2002 04:12:47 -0800 (PST) Received: from hermes.aueb.gr (hermes.aueb.gr [195.251.255.142]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7B4C43EBE for ; Mon, 9 Dec 2002 04:12:45 -0800 (PST) (envelope-from dds@aueb.gr) Received: from aueb.gr (spinellhw-1.eyelpidwn.offices.aueb.gr [195.251.233.14]) by hermes.aueb.gr (8.12.6/8.12.6) with ESMTP id gB9CCMf5024957 for ; Mon, 9 Dec 2002 14:12:23 +0200 Message-ID: <3DF4883E.BC00AF84@aueb.gr> Date: Mon, 09 Dec 2002 14:10:38 +0200 From: Diomidis Spinellis X-Mailer: Mozilla 4.78 [en] (Windows NT 5.0; U) X-Accept-Language: en,el,de MIME-Version: 1.0 To: freebsd-hackers@FreeBSD.org Subject: Contribution: PCL-724 driver Content-Type: text/plain; charset=iso-8859-7 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have written a device driver for the Advantech PCL-724 parallel I/O card and made it available at . The PCL-724 card emulates the Intel 8255A programmable peripheral interface chip running in mode 0 (simple I/O). The driver has been in production use under 4.1, 4.7 and 4.7 for about two years. Recently I polished its implementation and added a manual page to contribute it as part of FreeBSD. I am not a committer and probably do not have enough spare time to become one. What is the procedure for having the driver become part of FreeBSD? I can not see it documented in . Diomidis To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 6:54:55 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 090AF37B401; Mon, 9 Dec 2002 06:54:53 -0800 (PST) Received: from apache.metrocom.ru (www.metrocom.ru [195.5.128.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53D7943F37; Mon, 9 Dec 2002 06:54:51 -0800 (PST) (envelope-from alex@metrocom.ru) Received: from apache.metrocom.ru (localhost [127.0.0.1]) by apache.metrocom.ru (8.12.6/8.12.6) with ESMTP id gB9EsktQ018825; Mon, 9 Dec 2002 17:54:46 +0300 (MSK) Received: from localhost (alex@localhost) by apache.metrocom.ru (8.12.6/8.12.6/Submit) with ESMTP id gB9EskDw018822; Mon, 9 Dec 2002 17:54:46 +0300 (MSK) X-Authentication-Warning: apache.metrocom.ru: alex owned process doing -bs Date: Mon, 9 Dec 2002 17:54:46 +0300 (MSK) From: Varshavchick Alexander To: David Schultz Cc: Terry Lambert , , Subject: Re: maxusers and random system freezes In-Reply-To: <20021206134724.GA16965@HAL9000.homeunix.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi David, Thanks, you're a genuis, didn't you know that? Your patch worked perfectly :) However, it didn't solve the random freezes problem. The server felt relieved a bit, load average value pushed down a little, so when the server is working, this change did him good. Now more about a state when the server sleeps. It behaves as though the load average has suddently fired to some immense value - the system responds to ping, but all other activity has almost halted. It's not like the server went to a swap, because it occurs practically instantly, and this state goes for hours. The system is lacking some resources, or may be a bug somewhere, can you give any hints to it? My best wishes ---- Alexander Varshavchick, Metrocom Joint Stock Company Phone: (812)118-3322, 118-3115(fax) On Fri, 6 Dec 2002, David Schultz wrote: > Date: Fri, 6 Dec 2002 05:47:24 -0800 > From: David Schultz > To: Varshavchick Alexander > Cc: Terry Lambert , freebsd-questions@FreeBSD.ORG, > freebsd-hackers@FreeBSD.ORG > Subject: Re: maxusers and random system freezes > > Thus spake Varshavchick Alexander : > > On Fri, 6 Dec 2002, David Schultz wrote: > > > > > Thus spake Varshavchick Alexander : > > > > Well, now I made KVA space 2G, we'll see later on if it helps to get rid > > > > of the sudden system halts, but for some reason a side-effect has > > > > appeared: pthread_create function returns EAGAIN error now, so I had to > > > > recompile the software using it with linux threads to make it working. > > > > With the old kernel these pieces worked without problems. Can it be that > > > > somehow the enlarged KVA space messed up with the threads mechanism? > > > > > > I'm not a pthreads expert, but my best guess is that your program > > > tried to create a thread with a stack address that was too high. > > > Remember that with a 2 GB KVA, user processes have only 2 GB to > > > play with instead of 3 GB, so attempting to mmap() a stack above > > > about 2 GB would cause pthread_create() to return EAGAIN. > > > > > > > Yes this makes sense, however this call to pthread_create didn't specify > > any special addresses for the new thread. The pthread_create was called > > with the NULL attribute which means that the system defaults were being > > used. Something in the system has gone wrong... > > I just glanced at the source in -STABLE, and it appears to be a > pthreads bug. (Then again, maybe I'm missing something, since > nobody seems to have noticed this before.) The default address at > which new thread stacks are created is just below the main stack. > This address is based on the lexical constant USRSTACK, but it > should be initialized in uthread_init() based on the kern.usrstack > value returned by sysctl. (The correct value is already used to > map the main stack's red zone.) The result is that you need to > make world and recompile any apps statically linked against > pthreads after building your new kernel in order to get things to > work. > > I don't have time to fiddle with pthreads until after Christmas, > but you might see if the following patch (against -STABLE) helps > when you reduce the configured KVA size without remaking pthreads. > > Index: uthread/uthread_init.c > =================================================================== > RCS file: /home/ncvs/src/lib/libc_r/uthread/uthread_init.c,v > retrieving revision 1.23.2.10 > diff -u -r1.23.2.10 uthread_init.c > --- uthread/uthread_init.c 2002/10/22 14:44:03 1.23.2.10 > +++ uthread/uthread_init.c 2002/12/06 13:41:06 > @@ -245,6 +245,8 @@ > len = sizeof (int); > if (sysctl(mib, 2, &_usrstack, &len, NULL, 0) == -1) > _usrstack = (void *)USRSTACK; > + _next_stack = _usrstack - PTHREAD_STACK_INITIAL - > + PTHREAD_STACK_DEFAULT - (2 * PTHREAD_STACK_GUARD); > /* > * Create a red zone below the main stack. All other stacks are > * constrained to a maximum size by the paramters passed to > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 8:40:56 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 749E337B401 for ; Mon, 9 Dec 2002 08:40:55 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8944C43E4A for ; Mon, 9 Dec 2002 08:40:54 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.6/8.12.3) with ESMTP id gB9GeduB056360; Mon, 9 Dec 2002 09:40:40 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 09 Dec 2002 09:38:17 -0700 (MST) Message-Id: <20021209.093817.67066440.imp@bsdimp.com> To: lamont@scriptkiddie.org Cc: kris@obsecurity.org, freebsd-hackers@FreeBSD.ORG Subject: Re: help compiling propolice gcc From: "M. Warner Losh" In-Reply-To: <20021208180552.D12741-100000@coredump.scriptkiddie.org> References: <20021209012803.GA40767@rot13.obsecurity.org> <20021208180552.D12741-100000@coredump.scriptkiddie.org> X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You forgot to do a make obj when building by hand. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 9:24:32 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC81C37B401; Mon, 9 Dec 2002 09:24:31 -0800 (PST) Received: from hotmail.com (f91.law15.hotmail.com [64.4.23.91]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8145243EC5; Mon, 9 Dec 2002 09:24:31 -0800 (PST) (envelope-from soheil_hh@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 9 Dec 2002 09:18:58 -0800 Received: from 62.217.78.252 by lw15fd.law15.hotmail.msn.com with HTTP; Mon, 09 Dec 2002 17:18:58 GMT X-Originating-IP: [62.217.78.252] From: "soheil soheil" To: freebsd-net@freebsd.org Subject: IPFW Date: Mon, 09 Dec 2002 17:18:58 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 09 Dec 2002 17:18:58.0575 (UTC) FILETIME=[0F5AA9F0:01C29FA7] Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear ALL i run this commands on my 4.4FreeBSD-Release #/sbin/ipfw -f flush #/sbin/ipfw divert 5050 ip from any to any it runs the first command and say no socket found and then when i run the second line it write the words for help and nothing is applied what can i do ? I have a divert socket on port 5050 i want to divert all of the packet to it thanx _________________________________________________________________ MSN 8 with e-mail virus protection service: 2 months FREE* http://join.msn.com/?page=features/virus To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 11:32: 7 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA6C137B401; Mon, 9 Dec 2002 11:32:06 -0800 (PST) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1ABA43E4A; Mon, 9 Dec 2002 11:32:05 -0800 (PST) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.12.5/8.12.5) with ESMTP id gB9JW4TJ097254; Mon, 9 Dec 2002 22:32:04 +0300 (MSK) (envelope-from marck@rinet.ru) Date: Mon, 9 Dec 2002 22:32:04 +0300 (MSK) From: Dmitry Morozovsky To: Varshavchick Alexander Cc: David Schultz , Terry Lambert , "" , "" Subject: Re: maxusers and random system freezes In-Reply-To: Message-ID: <20021209223023.E96311-100000@woozle.rinet.ru> References: X-NCC-RegID: ru.rinet MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 9 Dec 2002, Varshavchick Alexander wrote: VA> the server went to a swap, because it occurs practically instantly, and VA> this state goes for hours. The system is lacking some resources, or may be VA> a bug somewhere, can you give any hints to it? Hmm, what about logging vmstat/pstat/netstat -m/sysctl vm ? Possibly to remote machine via remote syslog? Sincerely, D.Marck [DM5020, DM268-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 11:44: 2 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B87A37B404 for ; Mon, 9 Dec 2002 11:44:01 -0800 (PST) Received: from mail.hacknslash.org (evrtwa1-ar4-157-027.biz.dsl.gtei.net [4.34.157.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40DF443EB2 for ; Mon, 9 Dec 2002 11:44:00 -0800 (PST) (envelope-from octavian@hacknslash.org) Received: (qmail 96112 invoked by uid 80); 9 Dec 2002 19:44:08 -0000 Received: from 205.158.140.69 ( [205.158.140.69]) as user octavian@localhost by mail.hacknslash.org with HTTP; Mon, 9 Dec 2002 11:44:08 -0800 Message-ID: <1039463048.3df4f288c34f8@mail.hacknslash.org> Date: Mon, 9 Dec 2002 11:44:08 -0800 From: Octavian Hornoiu To: freebsd-hackers@freebsd.org Subject: ipfilter advanced options MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.1 X-Originating-IP: 205.158.140.69 Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am trying to increase the state table on IPFILTER and also the NAT_SIZE option but on the ipfilter how-to it says to alter a file called ipf_state.h This file is not available on FreeBSD. Where is the included batch of files that compiles ipfilter into the kernel? Specifically, are there comparable include files I could edit with the options I need? Thanks! Octavian ------------------------------------------------- This mail sent through IMP: http://horde.org/imp/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 12:21:17 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFC5A37B401; Mon, 9 Dec 2002 12:21:15 -0800 (PST) Received: from femme.sapphite.org (pcp02268182pcs.longhl01.md.comcast.net [68.50.99.190]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44F6D43E4A; Mon, 9 Dec 2002 12:21:15 -0800 (PST) (envelope-from trish@bsdunix.net) Received: from localhost (trish@localhost [127.0.0.1]) by femme.sapphite.org (8.12.6/8.12.6) with ESMTP id gB9KLBZF016221; Mon, 9 Dec 2002 15:21:14 -0500 (EST) (envelope-from trish@bsdunix.net) Date: Mon, 9 Dec 2002 15:21:11 -0500 (EST) From: Trish Lynch X-X-Sender: To: , Subject: MDFUG Pre-Christmas "Happy Hour" Friday, Dec 13th. Message-ID: <20021209152005.W15340-100000@femme> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At the Last Chance Saloon in Columbia directions can be found on http://bsdunix.net -Trish -- Trish Lynch trish@bsdunix.net Ecartis Core Team trish@listmistress.org EFNet IRC Operator @ efnet.demon.co.uk AilleCat@EFNet UNIXNet IRC Admin @ femme.ipv6.sapphite.org AilleCat@UNIXNet Key fingerprint = C44E 8E63 6E3C 18BD 608F E004 9DC7 C2E9 0E24 DFBD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 12:39:42 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3261B37B401; Mon, 9 Dec 2002 12:39:41 -0800 (PST) Received: from arbornet.org (m-net.arbornet.org [209.142.209.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A21843E4A; Mon, 9 Dec 2002 12:39:40 -0800 (PST) (envelope-from plongeur@m-net.arbornet.org) Received: from m-net.arbornet.org (localhost [127.0.0.1]) by arbornet.org (8.12.3/8.11.2) with ESMTP id gB9Ke84l059715; Mon, 9 Dec 2002 15:40:08 -0500 (EST) (envelope-from plongeur@m-net.arbornet.org) Received: from localhost (plongeur@localhost) by m-net.arbornet.org (8.12.3/8.12.3/Submit) with ESMTP id gB9Ke8Mm059712; Mon, 9 Dec 2002 15:40:08 -0500 (EST) Date: Mon, 9 Dec 2002 15:40:08 -0500 (EST) From: Mario To: Trish Lynch Cc: chat@FreeBSD.ORG, Subject: Re: MDFUG Pre-Christmas "Happy Hour" Friday, Dec 13th. In-Reply-To: <20021209152005.W15340-100000@femme> Message-ID: <20021209154001.K59624-100000@m-net.arbornet.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Stop spamming me. On Mon, 9 Dec 2002, Trish Lynch wrote: > > At the Last Chance Saloon in Columbia > > directions can be found on http://bsdunix.net > > -Trish > > -- > Trish Lynch trish@bsdunix.net > Ecartis Core Team trish@listmistress.org > EFNet IRC Operator @ efnet.demon.co.uk AilleCat@EFNet > UNIXNet IRC Admin @ femme.ipv6.sapphite.org AilleCat@UNIXNet > Key fingerprint = C44E 8E63 6E3C 18BD 608F E004 9DC7 C2E9 0E24 DFBD > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-chat" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 12:42:56 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFD9E37B401 for ; Mon, 9 Dec 2002 12:42:55 -0800 (PST) Received: from grsu.by (grsu.by [194.158.202.115]) by mx1.FreeBSD.org (Postfix) with SMTP id 9647E43EA9 for ; Mon, 9 Dec 2002 12:42:53 -0800 (PST) (envelope-from grog@grsu.by) Received: (qmail 82615 invoked from network); 9 Dec 2002 20:40:40 -0000 Received: from unknown (HELO grsu.by) (grog@195.50.13.213) by grsu.by with SMTP; 9 Dec 2002 20:40:40 -0000 Message-ID: <3DF4FD4E.30203@grsu.by> Date: Mon, 09 Dec 2002 22:30:06 +0200 From: Yury Tarasievich User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.1) Gecko/20020829 X-Accept-Language: be, en MIME-Version: 1.0 To: freebsd-hackers@freebsd.org Subject: unnaturally slow booting Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Wanted to ask about it for quite some time. I've got two 20G disks installed with basically same geometry. They were partitioned (by linux fdisk) approx. similarly (+/- 10 cylinders): part. 1: ~1-250 part. 2 (Extended): ~751-everything that remains part. 3: ~251-500 part. 4: ~501-750 There's FreeBSD (4.7-RELEASE) installed on ad0s3 and ad1s3. There's FreeBSD bootmanager installed. Instance from ad1s3 boots without any problems. Now, booting instance on ad0s3, beginning with kernel loading and through modules from loader.conf loading, takes unnaturally long time, "spinning bar" ticks happen at rate about 1 per sec. When kernel and modules are loaded, things progress as usual. In fact, I installed the instance on ad1s3 just to avoid this weirdness. I believe this behaviour started somewhere about 4.6-RELEASE. I somehow do not recall seeing this on 4.3-4.5, and I surely was using this scheme of partitioning then. I'm in no way expert, so looking through bootloader source didn't reveal anything to me. Any thoughts on what happens? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 14:56:30 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EA7B37B406; Mon, 9 Dec 2002 14:56:28 -0800 (PST) Received: from arbornet.org (m-net.arbornet.org [209.142.209.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5833F43EE6; Mon, 9 Dec 2002 14:56:24 -0800 (PST) (envelope-from plongeur@m-net.arbornet.org) Received: from m-net.arbornet.org (localhost [127.0.0.1]) by arbornet.org (8.12.3/8.11.2) with ESMTP id gB9Mv74l078717; Mon, 9 Dec 2002 17:57:07 -0500 (EST) (envelope-from plongeur@m-net.arbornet.org) Received: from localhost (plongeur@localhost) by m-net.arbornet.org (8.12.3/8.12.3/Submit) with ESMTP id gB9Mv7HP078714; Mon, 9 Dec 2002 17:57:07 -0500 (EST) Date: Mon, 9 Dec 2002 17:57:07 -0500 (EST) From: Mario To: Jordan Hubbard Cc: chat@freebsd.org, , Trish Lynch Subject: Re: MDFUG Pre-Christmas "Happy Hour" Friday, Dec 13th. In-Reply-To: Message-ID: <20021209175611.C78582-100000@m-net.arbornet.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I wanted to notify the entire channel that it was spamming, and unappreciated. My name isn't Mario. On Mon, 9 Dec 2002, Jordan Hubbard wrote: > Oh, now that was really really intelligent. You tell Trish to stop > spamming you and then you cc both chat and hackers, only DOUBLING the > amount of traffic to everyone that has now occurred on this thread. > Even the domestic mice and cockroaches in my house have learned by now > that when you want someone to stop "spamming" you, you reply to THEM > DIRECTLY and don't simply cc everybody who got sent the original > message. When you do that, you only MULTIPLY the problem by a factor > of X, where X represents all the people who are too stupid to edit > their CC lines when replying to spam. You see the CC line of this > message? You see where I have EDITED it so as not to also send this > little flame to chat and hackers? Do you think you can do that in the > future, Mario? Yes? Thank you! > > - Jordan > > On Monday, December 9, 2002, at 12:40 PM, Mario wrote: > > > Stop spamming me. > > > > On Mon, 9 Dec 2002, Trish Lynch wrote: > > > >> > >> At the Last Chance Saloon in Columbia > >> > >> directions can be found on http://bsdunix.net > >> > >> -Trish > >> > >> -- > >> Trish Lynch trish@bsdunix.net > >> Ecartis Core Team trish@listmistress.org > >> EFNet IRC Operator @ efnet.demon.co.uk AilleCat@EFNet > >> UNIXNet IRC Admin @ femme.ipv6.sapphite.org AilleCat@UNIXNet > >> Key fingerprint = C44E 8E63 6E3C 18BD 608F E004 9DC7 C2E9 0E24 DFBD > >> > >> > >> > >> To Unsubscribe: send mail to majordomo@FreeBSD.org > >> with "unsubscribe freebsd-chat" in the body of the message > >> > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-hackers" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 15:18:55 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A9AE37B401; Mon, 9 Dec 2002 15:18:53 -0800 (PST) Received: from grillolja.cs.umu.se (grillolja.cs.umu.se [130.239.40.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39D7443F43; Mon, 9 Dec 2002 15:18:52 -0800 (PST) (envelope-from tdv94ped@cs.umu.se) Received: from localhost (localhost [127.0.0.1]) by amavisd-new (Postfix) with ESMTP id A8658A02D; Tue, 10 Dec 2002 00:18:50 +0100 (MET) Received: from cs.umu.se (h40n3c1o1023.bredband.skanova.com [213.64.166.40]) by grillolja.cs.umu.se (Postfix) with ESMTP id D80E0A02F; Tue, 10 Dec 2002 00:18:44 +0100 (MET) Message-ID: <3DF524CE.2060803@cs.umu.se> Date: Tue, 10 Dec 2002 00:18:38 +0100 From: Paul Everlund User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.1) Gecko/20020823 Netscape/7.0 X-Accept-Language: sv,en MIME-Version: 1.0 To: Mario Cc: Jordan Hubbard , chat@freebsd.org, hackers@freebsd.org, Trish Lynch Subject: Re: MDFUG Pre-Christmas "Happy Hour" Friday, Dec 13th. References: <20021209175611.C78582-100000@m-net.arbornet.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new amavisd-new-20020630 Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Mario wrote: > I wanted to notify the entire channel that it was spamming, and > unappreciated. My name isn't Mario. I should follow Jordan Hubbards advice, not CC:ing everyone, but... First... Why sending messages as Mario when you aren't Mario? Second... Did you follow the link in the message? It seems to be a BSD users group having a get together, and as people usually are social beings (even most people sitting in front of a com- puter) why not let other BSD users know where they can meet, having a beer or two, talking to other people sharing a common interest? Who knows, maybe someone comes up with a good idea at that informal meeting, that can benefit the project? Is by the way information about, for an example, Usenix on the mailing list from the good people of the FreeBSD Project also spam? I personally think (almost) everything related to BSD are appropriate on a BSD list. > On Mon, 9 Dec 2002, Jordan Hubbard wrote: > > >>Oh, now that was really really intelligent. You tell Trish to stop >>spamming you and then you cc both chat and hackers, only DOUBLING the >>amount of traffic to everyone that has now occurred on this thread. >>Even the domestic mice and cockroaches in my house have learned by now >>that when you want someone to stop "spamming" you, you reply to THEM >>DIRECTLY and don't simply cc everybody who got sent the original >>message. When you do that, you only MULTIPLY the problem by a factor >>of X, where X represents all the people who are too stupid to edit >>their CC lines when replying to spam. You see the CC line of this >>message? You see where I have EDITED it so as not to also send this >>little flame to chat and hackers? Do you think you can do that in the >>future, Mario? Yes? Thank you! >> >>- Jordan Thank you Jordan for your contribution to this great OS! Best regards, Paul >>On Monday, December 9, 2002, at 12:40 PM, Mario wrote: >> >> >>>Stop spamming me. >>> >>>On Mon, 9 Dec 2002, Trish Lynch wrote: >>> >>> >>>>At the Last Chance Saloon in Columbia >>>> >>>>directions can be found on http://bsdunix.net >>>> >>>>-Trish >>>> >>>>-- >>>>Trish Lynch trish@bsdunix.net >>>>Ecartis Core Team trish@listmistress.org >>>>EFNet IRC Operator @ efnet.demon.co.uk AilleCat@EFNet >>>>UNIXNet IRC Admin @ femme.ipv6.sapphite.org AilleCat@UNIXNet >>>>Key fingerprint = C44E 8E63 6E3C 18BD 608F E004 9DC7 C2E9 0E24 DFBD >>>> >>>> >>>> >>>>To Unsubscribe: send mail to majordomo@FreeBSD.org >>>>with "unsubscribe freebsd-chat" in the body of the message >>>> >>> >>> >>>To Unsubscribe: send mail to majordomo@FreeBSD.org >>>with "unsubscribe freebsd-hackers" in the body of the message >> > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hackers" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 15:19: 7 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4890037B401; Mon, 9 Dec 2002 15:19:04 -0800 (PST) Received: from arbornet.org (m-net.arbornet.org [209.142.209.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BDFC43F15; Mon, 9 Dec 2002 15:19:03 -0800 (PST) (envelope-from plongeur@m-net.arbornet.org) Received: from m-net.arbornet.org (localhost [127.0.0.1]) by arbornet.org (8.12.3/8.11.2) with ESMTP id gB9NJm4l080779; Mon, 9 Dec 2002 18:19:48 -0500 (EST) (envelope-from plongeur@m-net.arbornet.org) Received: from localhost (plongeur@localhost) by m-net.arbornet.org (8.12.3/8.12.3/Submit) with ESMTP id gB9NJlmt080776; Mon, 9 Dec 2002 18:19:48 -0500 (EST) Date: Mon, 9 Dec 2002 18:19:47 -0500 (EST) From: Mario To: Chris Corbliss Cc: hackers@freebsd.org, Subject: Re: MDFUG Pre-Christmas "Happy Hour" Friday, Dec 13th. In-Reply-To: <3DF5242F.165E7E5C@panasas.com> Message-ID: <20021209181830.B80351-100000@m-net.arbornet.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 9 Dec 2002, Chris Corbliss wrote: > What's wrong with me ? Well, for one thing, you're not supposed to put a space before a question mark. > > People who spam everyone with a complaint about non-spam amuse me. > Oh. > People who can't figure out how to use email amuse me. > > People who call other poeple names because they can't just admit they screwed up amuse > me. > > You have brought much amusement to my day, so I just figured that I would try to help you > keep from broadcasting to the entire world how little you know about mailers and spam and > users groups and mailing list etiquette ( did I miss anything ? ). > > Oh, yes and your complete lack of manners. > Try English. > > > Mario wrote: > > > Don't tell me how to do things. I don't have either of those buttons. > > What's wrong with you? > > > > On Mon, 9 Dec 2002, Chris Corbliss wrote: > > > > > Really ... > > > > > > So it's SPAM when someone sends a message on a FreeBSD mailing list about the > > > > > > MD > > > Maryland ( You know, the state . . ) > > > > > > FUD > > > FreeBSD Users Group > > > > > > But it is NOT SPAM to send a DON'T SPAM ME message to everyone on the list ? > > > > > > Dude, you really need to try decaf . . . > > > > > > (And maybe the "Reply to sender" button instead of "Reply to All") > > > > > > > > > Mario wrote: > > > > > > > Yo, man, You're a JERK. > > > > > > > > That was SPAM. Jrtl > > > > > > > > On Mon, 9 Dec 2002, Chris Corbliss wrote: > > > > > > > > > Try making sense . . > > > > > > > > > > Mario wrote: > > > > > > > > > > > Try English. > > > > > > > > > > > > On Mon, 9 Dec 2002, Chris Corbliss wrote: > > > > > > > > > > > > > So it's not OK for her to spam you, but it's OK for you to spam everybody > > > > > > > with your reply ? > > > > > > > > > > > > > > Hmmmm..., > > > > > > > > > > > > > > > > > > > > > Mario wrote: > > > > > > > > > > > > > > > Stop spamming me. > > > > > > > > > > > > > > > > On Mon, 9 Dec 2002, Trish Lynch wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > At the Last Chance Saloon in Columbia > > > > > > > > > > > > > > > > > > directions can be found on http://bsdunix.net > > > > > > > > > > > > > > > > > > -Trish > > > > > > > > > > > > > > > > > > -- > > > > > > > > > Trish Lynch trish@bsdunix.net > > > > > > > > > Ecartis Core Team trish@listmistress.org > > > > > > > > > EFNet IRC Operator @ efnet.demon.co.uk AilleCat@EFNet > > > > > > > > > UNIXNet IRC Admin @ femme.ipv6.sapphite.org AilleCat@UNIXNet > > > > > > > > > Key fingerprint = C44E 8E63 6E3C 18BD 608F E004 9DC7 C2E9 0E24 DFBD > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > > > > > with "unsubscribe freebsd-chat" in the body of the message > > > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > > > > with "unsubscribe freebsd-hackers" in the body of the message > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 15:28:48 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D11637B401; Mon, 9 Dec 2002 15:28:46 -0800 (PST) Received: from arbornet.org (m-net.arbornet.org [209.142.209.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 064EA43EA9; Mon, 9 Dec 2002 15:28:46 -0800 (PST) (envelope-from plongeur@m-net.arbornet.org) Received: from m-net.arbornet.org (localhost [127.0.0.1]) by arbornet.org (8.12.3/8.11.2) with ESMTP id gB9NAQ4l080272; Mon, 9 Dec 2002 18:10:26 -0500 (EST) (envelope-from plongeur@m-net.arbornet.org) Received: from localhost (plongeur@localhost) by m-net.arbornet.org (8.12.3/8.12.3/Submit) with ESMTP id gB9NAPIR080269; Mon, 9 Dec 2002 18:10:25 -0500 (EST) Date: Mon, 9 Dec 2002 18:10:25 -0500 (EST) From: Mario To: Ceri Davies Cc: chat@freebsd.org, Subject: Re: MDFUG Pre-Christmas "Happy Hour" Friday, Dec 13th. In-Reply-To: <20021209230823.GA46694@submonkey.net> Message-ID: <20021209180938.T80188-100000@m-net.arbornet.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG What do you mean? On Mon, 9 Dec 2002, Ceri Davies wrote: > On Mon, Dec 09, 2002 at 05:57:07PM -0500, Mario wrote: > > I wanted to notify the entire channel that it was spamming, and > > unappreciated. My name isn't Mario. > > Please don't forward private email to the list. > It's unbelievably rude. > > Ceri > > On Mon, 9 Dec 2002, Jordan Hubbard wrote: > > > > > Oh, now that was really really intelligent. You tell Trish to stop > > > spamming you and then you cc both chat and hackers, only DOUBLING the > > > amount of traffic to everyone that has now occurred on this thread. > > > Even the domestic mice and cockroaches in my house have learned by now > > > that when you want someone to stop "spamming" you, you reply to THEM > > > DIRECTLY and don't simply cc everybody who got sent the original > > > message. When you do that, you only MULTIPLY the problem by a factor > > > of X, where X represents all the people who are too stupid to edit > > > their CC lines when replying to spam. You see the CC line of this > > > message? You see where I have EDITED it so as not to also send this > > > little flame to chat and hackers? Do you think you can do that in the > > > future, Mario? Yes? Thank you! > > > > > > - Jordan > -- > Your evil shall be your reckoning! > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 16:20:29 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D70A937B401 for ; Mon, 9 Dec 2002 16:20:28 -0800 (PST) Received: from kanga.honeypot.net (kanga.honeypot.net [208.162.254.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0C1B43EC5 for ; Mon, 9 Dec 2002 16:20:27 -0800 (PST) (envelope-from kirk@strauser.com) Received: from pooh.honeypot.net (mail@pooh.honeypot.net [10.0.1.2]) by kanga.honeypot.net (8.12.6/8.12.6) with ESMTP id gBA0KLTc036123 for ; Mon, 9 Dec 2002 18:20:21 -0600 (CST) (envelope-from kirk@strauser.com) Received: from kirk by pooh.honeypot.net with local (Exim 3.36 #1 (Debian)) id 18LY8L-00086Q-00 for ; Mon, 09 Dec 2002 18:20:21 -0600 To: freebsd-hackers@freebsd.org Subject: Re: MDFUG Pre-Christmas "Happy Hour" Friday, Dec 13th. References: <20021209181830.B80351-100000@m-net.arbornet.org> From: Kirk Strauser Date: 09 Dec 2002 18:20:21 -0600 In-Reply-To: <20021209181830.B80351-100000@m-net.arbornet.org> Message-ID: <87r8cqiv22.fsf@pooh.honeypot.net> Lines: 14 X-Mailer: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 2002-12-09T23:19:47Z, Mario writes: > On Mon, 9 Dec 2002, Chris Corbliss wrote: > > > What's wrong with me ? > Well, for one thing, you're not supposed to put a space before a question > mark. You're also supposed to put a blank line between the text you're replying to and your own. -- Kirk Strauser In Googlis non est, ergo non est. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 16:44:16 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC3CE37B401 for ; Mon, 9 Dec 2002 16:44:15 -0800 (PST) Received: from mx02.nexgo.de (mx02.nexgo.de [151.189.8.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AB3143F32 for ; Mon, 9 Dec 2002 16:44:15 -0800 (PST) (envelope-from ghost.driver@nexgo.de) Received: from mx08.nexgo.de (mx08.nexgo.de [151.189.8.84]) by mx02.nexgo.de (Postfix) with ESMTP id 880519F68E for ; Tue, 10 Dec 2002 01:44:03 +0100 (CET) Message-ID: <17159257.1039481043551.JavaMail.ngmail@mx08.nexgo.de> Date: Tue, 10 Dec 2002 01:44:03 +0100 (CET) From: ghost.driver@nexgo.de To: hackers@FreeBSD.org Subject: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-ngMessageSubType: MessageSubType_MAIL X-WebmailclientIP: : 145.254.86.32 Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi,sorry does Linux run with an AMD Athlon 1,2Ghz ? how? thx ---------------------------------------------------------------------------= - Jetzt Lastminute buchen!!! Gnadenlos g=FCnstige Lastminute-Angebote bei 1,2 Fly - bei diesen Preisen mu=DF man reisen. Jetzt hier informieren und buchen! http://www.arcor.de/home/redir.php/email.tui-sales ----------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 17:25:32 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D91537B404; Mon, 9 Dec 2002 17:25:31 -0800 (PST) Received: from tiamat.ipv6.hackerheaven.org (ipv6.hackerheaven.org [80.126.0.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EED243EA9; Mon, 9 Dec 2002 17:25:29 -0800 (PST) (envelope-from coolvibe@hackerheaven.org) Received: from azazel.ipv6.hackerheaven.org (azazel.ipv6.hackerheaven.org [10.0.0.11]) by tiamat.ipv6.hackerheaven.org (8.12.6/8.12.6) with ESMTP id gBA1POX9006432; Tue, 10 Dec 2002 02:25:25 +0100 (CET) (envelope-from coolvibe@hackerheaven.org) Content-Type: text/plain; charset="iso-8859-1" From: Emiel Kollof Organization: Hackerheaven dot ORG To: Mario Subject: Re: MDFUG Pre-Christmas "Happy Hour" Friday, Dec 13th. Date: Tue, 10 Dec 2002 02:25:25 +0100 User-Agent: KMail/1.4.3 Cc: hackers@FreeBSD.ORG, References: <20021209181830.B80351-100000@m-net.arbornet.org> In-Reply-To: <20021209181830.B80351-100000@m-net.arbornet.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200212100225.25768.coolvibe@hackerheaven.org> Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tuesday 10 December 2002 00:19, Mario wrote: > On Mon, 9 Dec 2002, Chris Corbliss wrote: > > What's wrong with me ? > > Well, for one thing, you're not supposed to put a space before a questi= on > mark. And you should learn how to quote properly. You waste a lot of perfectly = good=20 bytes to say just one line. [big fsking SNIP] Cheers, Emiel --=20 Geef je kat een miauwbeest subdomain voor kerst:=20 =09http://www.miauwbeest.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 17:28:59 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB31D37B401; Mon, 9 Dec 2002 17:28:57 -0800 (PST) Received: from tiamat.ipv6.hackerheaven.org (ipv6.hackerheaven.org [80.126.0.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA9F743EFF; Mon, 9 Dec 2002 17:28:56 -0800 (PST) (envelope-from coolvibe@hackerheaven.org) Received: from azazel.ipv6.hackerheaven.org (azazel.ipv6.hackerheaven.org [10.0.0.11]) by tiamat.ipv6.hackerheaven.org (8.12.6/8.12.6) with ESMTP id gBA1SrX9006469; Tue, 10 Dec 2002 02:28:53 +0100 (CET) (envelope-from coolvibe@hackerheaven.org) Content-Type: text/plain; charset="iso-8859-1" From: Emiel Kollof Organization: Hackerheaven dot ORG To: Mario Subject: Re: MDFUG Pre-Christmas "Happy Hour" Friday, Dec 13th. Date: Tue, 10 Dec 2002 02:28:54 +0100 User-Agent: KMail/1.4.3 Cc: chat@FreeBSD.ORG, References: <20021209180938.T80188-100000@m-net.arbornet.org> In-Reply-To: <20021209180938.T80188-100000@m-net.arbornet.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200212100228.54880.coolvibe@hackerheaven.org> Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tuesday 10 December 2002 00:10, Mario wrote: > What do you mean? That you'll get killfiled by a lot of people. For instance by be. Welcome= to=20 my blacklist! I hope you'll like it there... [retained as to make sense of the "conversation] > On Mon, 9 Dec 2002, Ceri Davies wrote: > > On Mon, Dec 09, 2002 at 05:57:07PM -0500, Mario wrote: > > > I wanted to notify the entire channel that it was spamming, and > > > unappreciated. My name isn't Mario. > > > > Please don't forward private email to the list. > > It's unbelievably rude. [snip the rest] No Cheers, Emiel --=20 Geef je kat een miauwbeest subdomain voor kerst:=20 =09http://www.miauwbeest.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 17:36:44 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E7C137B401 for ; Mon, 9 Dec 2002 17:36:43 -0800 (PST) Received: from kanga.honeypot.net (kanga.honeypot.net [208.162.254.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C43E43EBE for ; Mon, 9 Dec 2002 17:36:42 -0800 (PST) (envelope-from kirk@strauser.com) Received: from pooh.honeypot.net (mail@pooh.honeypot.net [10.0.1.2]) by kanga.honeypot.net (8.12.6/8.12.6) with ESMTP id gBA1afTc038068 for ; Mon, 9 Dec 2002 19:36:41 -0600 (CST) (envelope-from kirk@strauser.com) Received: from kirk by pooh.honeypot.net with local (Exim 3.36 #1 (Debian)) id 18LZKD-0008Ve-00 for ; Mon, 09 Dec 2002 19:36:41 -0600 To: freebsd-hackers@freebsd.org Subject: Re: none References: <17159257.1039481043551.JavaMail.ngmail@mx08.nexgo.de> From: Kirk Strauser Date: 09 Dec 2002 19:36:41 -0600 In-Reply-To: <17159257.1039481043551.JavaMail.ngmail@mx08.nexgo.de> Message-ID: <87n0neiriu.fsf@pooh.honeypot.net> Lines: 12 X-Mailer: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 2002-12-10T00:44:03Z, ghost.driver@nexgo.de writes: > hi,sorry > > does Linux run with an AMD Athlon 1,2Ghz ? > how? Dunno. Ask on a Linux mailing list. -- Kirk Strauser In Googlis non est, ergo non est. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 19: 1:59 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81F6037B401; Mon, 9 Dec 2002 19:01:58 -0800 (PST) Received: from durendal.skynet.be (durendal.skynet.be [195.238.3.91]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F23543EB2; Mon, 9 Dec 2002 19:01:56 -0800 (PST) (envelope-from brad.knowles@skynet.be) Received: from [10.0.1.2] (ip-26.shub-internet.org [194.78.144.26] (may be forged)) by durendal.skynet.be (8.11.6/8.11.6/Skynet-OUT-2.20) with ESMTP id gBA31m026467; Tue, 10 Dec 2002 04:01:48 +0100 (MET) (envelope-from ) Mime-Version: 1.0 X-Sender: bs663385@pop.skynet.be Message-Id: In-Reply-To: <20021209152005.W15340-100000@femme> References: <20021209152005.W15340-100000@femme> X-Grok: +++ath X-WebTV-Stationery: Standard; BGColor=black; TextColor=black Reply-By: Wed, 1 Jan 1984 12:34:56 +0100 Date: Tue, 10 Dec 2002 03:43:39 +0100 To: Trish Lynch From: Brad Knowles Subject: Re: MDFUG Pre-Christmas "Happy Hour" Friday, Dec 13th. Cc: , Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 3:21 PM -0500 2002/12/09, Trish Lynch wrote: > At the Last Chance Saloon in Columbia > > directions can be found on http://bsdunix.net Cool. Just forwarded this to the Old Bay SAGE mailing list. Thanks! -- Brad Knowles, "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety." -Benjamin Franklin, Historical Review of Pennsylvania. GCS/IT d+(-) s:+(++)>: a C++(+++)$ UMBSHI++++$ P+>++ L+ !E W+++(--) N+ !w--- O- M++ V PS++(+++) PE- Y+(++) PGP>+++ t+(+++) 5++(+++) X++(+++) R+(+++) tv+(+++) b+(++++) DI+(++++) D+(++) G+(++++) e++>++++ h--- r---(+++)* z(+++) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 21:47:58 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0C2937B401 for ; Mon, 9 Dec 2002 21:47:56 -0800 (PST) Received: from warez.scriptkiddie.org (uswest-dsl-142-38.cortland.com [209.162.142.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5070C43EC2 for ; Mon, 9 Dec 2002 21:47:52 -0800 (PST) (envelope-from lamont@scriptkiddie.org) Received: from [192.168.69.11] (unknown [192.168.69.11]) by warez.scriptkiddie.org (Postfix) with ESMTP id ABD6C62D1A for ; Mon, 9 Dec 2002 21:47:41 -0800 (PST) Date: Mon, 9 Dec 2002 21:47:41 -0800 (PST) From: Lamont Granquist To: freebsd-hackers@freebsd.org Subject: Re: CVS_LOCAL_BRANCH_NUM? In-Reply-To: <20021208112628.H11375-100000@coredump.scriptkiddie.org> Message-ID: <20021209213901.D18479-100000@coredump.scriptkiddie.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I finally figured this out. To use CVS_LOCAL_BRANCH_NUM with a cvs pserver you need to have the environment variable set server-side. That means something like invoking a wrapper from inetd which sets the environment variable and the calls cvs. Completely undocumented behavior and not terribly transparent. I'm working on some instructions at: http://www.scriptkiddie.org/freebsd/setting_up_local_repo.html On Sun, 8 Dec 2002, Lamont Granquist wrote: > I've been struggling all weekend to setup a local CVS repo mirror, and I > guess I've done that successfully, but I can't figure out what is going on > with CVS_LOCAL_BRANCH_NUM. My understanding is that if I set it to a > large number "63000" that it should tag branches that I make with values > roughly that large. You can see from below that what I'm getting though > is low-numbered branches. I'm confused. This is what I did on both > -current and 4.6-release: > > setenv CVS_LOCAL_BRANCH_NUM 63000 > cvs rtag -b -r RELENG_4_7 RELENG_4_LCG src > > And this is what I get -- shouldn't that be something like 1.229.63000? > > cvs status UPDATING > =================================================================== > File: UPDATING Status: Up-to-date > > Working revision: 1.229 > Repository revision: 1.229 /cvs/src/UPDATING,v > Sticky Tag: RELENG_4_LCG (branch: 1.229.4) > Sticky Date: (none) > Sticky Options: (none) > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hackers" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Mon Dec 9 23:56:59 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E716F37B409 for ; Mon, 9 Dec 2002 23:23:47 -0800 (PST) Received: from smtp-relay.omnis.com (smtp-relay.omnis.com [216.239.128.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 637FC43EC5 for ; Mon, 9 Dec 2002 23:23:47 -0800 (PST) (envelope-from wes@softweyr.com) Received: from softweyr.com (dslpool2-019.networldnoc.net [209.63.227.179]) by smtp-relay.omnis.com (Postfix) with ESMTP id F24F14335F; Mon, 9 Dec 2002 23:23:45 -0800 (PST) Message-ID: <3DF596C5.11814431@softweyr.com> Date: Mon, 09 Dec 2002 23:24:53 -0800 From: Wes Peters Organization: Softweyr LLC X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.4.2 i386) X-Accept-Language: en MIME-Version: 1.0 To: Kirk Strauser Cc: freebsd-hackers@freebsd.org, ghost.driver@nexgo.de Subject: Re: none References: <17159257.1039481043551.JavaMail.ngmail@mx08.nexgo.de> <87n0neiriu.fsf@pooh.honeypot.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Kirk Strauser wrote: > > At 2002-12-10T00:44:03Z, ghost.driver@nexgo.de writes: > > > hi,sorry > > > > does Linux run with an AMD Athlon 1,2Ghz ? > > how? > > Dunno. Ask on a Linux mailing list. FreeBSD runs just great on it. Maybe you should try that? ;^) http://www.freebsd.org/ -- "Where am I, and what am I doing in this handbasket?" Wes Peters Softweyr LLC wes@softweyr.com http://softweyr.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 1:31:39 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CF4037B401 for ; Tue, 10 Dec 2002 01:31:38 -0800 (PST) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 249AD43EB2 for ; Tue, 10 Dec 2002 01:31:37 -0800 (PST) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.12.5/8.12.5) with ESMTP id gBA9VXTJ014532; Tue, 10 Dec 2002 12:31:34 +0300 (MSK) (envelope-from marck@rinet.ru) Date: Tue, 10 Dec 2002 12:31:33 +0300 (MSK) From: Dmitry Morozovsky To: Lamont Granquist Cc: freebsd-hackers@FreeBSD.ORG Subject: Re: CVS_LOCAL_BRANCH_NUM? In-Reply-To: <20021209213901.D18479-100000@coredump.scriptkiddie.org> Message-ID: <20021210122917.F14187-100000@woozle.rinet.ru> References: <20021209213901.D18479-100000@coredump.scriptkiddie.org> X-NCC-RegID: ru.rinet MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 9 Dec 2002, Lamont Granquist wrote: LG> I finally figured this out. To use CVS_LOCAL_BRANCH_NUM with a cvs LG> pserver you need to have the environment variable set server-side. That LG> means something like invoking a wrapper from inetd which sets the LG> environment variable and the calls cvs. LG> LG> Completely undocumented behavior and not terribly transparent. LG> LG> I'm working on some instructions at: LG> LG> http://www.scriptkiddie.org/freebsd/setting_up_local_repo.html A little comment: - 8< - wrapper #!/bin/sh export CVS_LOCAL_BRANCH_NUM=1000 /usr/bin/cvs $* - 8< - Don't you think the last parameter should be "$@" ? Sincerely, D.Marck [DM5020, DM268-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 2:11:56 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EFA337B404 for ; Tue, 10 Dec 2002 02:11:54 -0800 (PST) Received: from warez.scriptkiddie.org (uswest-dsl-142-38.cortland.com [209.162.142.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EE6343EBE for ; Tue, 10 Dec 2002 02:11:50 -0800 (PST) (envelope-from lamont@scriptkiddie.org) Received: from [192.168.69.11] (unknown [192.168.69.11]) by warez.scriptkiddie.org (Postfix) with ESMTP id 038D062D1A; Tue, 10 Dec 2002 01:41:33 -0800 (PST) Date: Tue, 10 Dec 2002 01:41:33 -0800 (PST) From: Lamont Granquist To: Dmitry Morozovsky Cc: freebsd-hackers@FreeBSD.ORG Subject: Re: CVS_LOCAL_BRANCH_NUM? In-Reply-To: <20021210122917.F14187-100000@woozle.rinet.ru> Message-ID: <20021210013718.I32160-100000@coredump.scriptkiddie.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG From the man page, I'm not really sure where it makes a difference other than when someone is playing with IFS, but $@ seems to be more of what I intended... And in case anyone is still reading this now, I'd like to throw out the suggestion that CVS_LOCAL_BRANCH_NUM should really be an option to cvs rtag and should thereby be settable in one's .cvsrc file and the option should get transmitted to the cvs pserver, eliminating the kind of asymmetry I just documented. On Tue, 10 Dec 2002, Dmitry Morozovsky wrote: > On Mon, 9 Dec 2002, Lamont Granquist wrote: > > LG> I finally figured this out. To use CVS_LOCAL_BRANCH_NUM with a cvs > LG> pserver you need to have the environment variable set server-side. That > LG> means something like invoking a wrapper from inetd which sets the > LG> environment variable and the calls cvs. > LG> > LG> Completely undocumented behavior and not terribly transparent. > LG> > LG> I'm working on some instructions at: > LG> > LG> http://www.scriptkiddie.org/freebsd/setting_up_local_repo.html > > A little comment: > > - 8< - wrapper > #!/bin/sh > > export CVS_LOCAL_BRANCH_NUM=1000 > /usr/bin/cvs $* > - 8< - > > > Don't you think the last parameter should be "$@" ? > > Sincerely, > D.Marck [DM5020, DM268-RIPE, DM3-RIPN] > ------------------------------------------------------------------------ > *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** > ------------------------------------------------------------------------ > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 3:22:58 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9109737B401; Tue, 10 Dec 2002 03:22:57 -0800 (PST) Received: from sdf.lonestar.org (sdf.lonestar.org [207.202.214.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0894443E4A; Tue, 10 Dec 2002 03:22:57 -0800 (PST) (envelope-from omestre@sdf.lonestar.org) Received: by sdf.lonestar.org (8.11.6+3.4W/8.11.6) id gBABMpJ04041; Tue, 10 Dec 2002 11:22:51 GMT Date: Tue, 10 Dec 2002 11:22:51 +0000 (UTC) From: omestre To: freebsd-hackers@freebsd.org, Subject: bootp_subr.c hacked! Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi Somedays ago i wrote to this list about my patch to bootp_subr.c Some users said to me about error in the link... sorry, here is the working link: http://oslo.procergs.com.br/tor/leal/FreeBSD/bootp_subr.c sorry by the english. omestre@sdf.lonestar.org SDF Public Access UNIX System - http://sdf.lonestar.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 7:51:10 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D461737B404 for ; Tue, 10 Dec 2002 07:51:09 -0800 (PST) Received: from msgbas2x.cos.agilent.com (msgbas2x.cos.agilent.com [192.25.240.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id 129C543ED1 for ; Tue, 10 Dec 2002 07:51:09 -0800 (PST) (envelope-from ctuffli@rose.agilent.com) Received: from relcos1.cos.agilent.com (relcos1.cos.agilent.com [130.29.152.239]) by msgbas2x.cos.agilent.com (Postfix) with ESMTP id 1105D18FB for ; Tue, 10 Dec 2002 08:51:03 -0700 (MST) Received: from rtl.rose.agilent.com (rtl.rose.agilent.com [130.30.179.189]) by relcos1.cos.agilent.com (Postfix) with ESMTP id 16D8C365 for ; Tue, 10 Dec 2002 08:51:01 -0700 (MST) Received: from mail.rose.agilent.com (mailsrv@bellhop [130.30.179.19]) by rtl.rose.agilent.com (8.9.3 (PHNE_18979)/8.9.3 SMKit7.1.0) with ESMTP id HAA17827 for ; Tue, 10 Dec 2002 07:50:59 -0800 (PST) Received: from thegrail (anu.rose.agilent.com [156.140.225.186]) by mail.rose.agilent.com (Netscape Messaging Server 3.6) with ESMTP id AAA20A0 for ; Tue, 10 Dec 2002 07:50:56 -0800 Received: by thegrail (Postfix, from userid 1001) id B80058464B; Tue, 10 Dec 2002 07:46:36 -0800 (PST) Date: Tue, 10 Dec 2002 07:46:36 -0800 From: Chuck Tuffli To: freebsd-hackers@freebsd.org Subject: registers not saved Message-ID: <20021210154635.GC605@thegrail.rose.agilent.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've been chasing down some weird panics in my CAM driver and have noticed that functions don't seem to save all register values before they modify them. For example, function A uses register ecx to hold the value of a pointer. Part way through, function A calls function B which uses ecx as a loop index. The bad part is function B never saves/restores the value of ecx and function A starts dereferencing garbage. An informal sampling of my driver seems to indicate that ebx gets pushed/poped at entry/exit but ecx and edx don't. Does any of this sound familiar? Thanks! -- Chuck Tuffli Agilent Technologies, Storage and Networking To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 7:58:52 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1078737B401 for ; Tue, 10 Dec 2002 07:58:51 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C81543ED1 for ; Tue, 10 Dec 2002 07:58:49 -0800 (PST) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.6/8.12.6) with ESMTP id gBAFwY3p099180; Tue, 10 Dec 2002 16:58:35 +0100 (CET) (envelope-from phk@critter.freebsd.dk) To: Chuck Tuffli Cc: freebsd-hackers@FreeBSD.ORG Subject: Re: registers not saved From: phk@FreeBSD.ORG In-Reply-To: Your message of "Tue, 10 Dec 2002 07:46:36 PST." <20021210154635.GC605@thegrail.rose.agilent.com> Date: Tue, 10 Dec 2002 16:58:34 +0100 Message-ID: <99179.1039535914@critter.freebsd.dk> Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20021210154635.GC605@thegrail.rose.agilent.com>, Chuck Tuffli write s: >I've been chasing down some weird panics in my CAM driver and have >noticed that functions don't seem to save all register values before >they modify them. > >For example, function A uses register ecx to hold the value of a pointer. Part way through, function A calls function B which uses ecx as a loop index. The bad part is function B never saves/restores the value of ecx and function A starts dereferencing garbage. > >An informal sampling of my driver seems to indicate that ebx gets >pushed/poped at entry/exit but ecx and edx don't. Does any of this >sound familiar? Thanks! There are strict rules for which registers should be saved and which not. You can modify these rules somewhat using weird compiler options, but it should be consistent for all the code generated with the same settings. Which FreeBSD version (uname -a) and which compiler version (cc -v) is this ? Poul-Henning -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 8:22:50 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2C2537B404; Tue, 10 Dec 2002 08:22:48 -0800 (PST) Received: from msgbas2x.cos.agilent.com (msgbas2x.cos.agilent.com [192.25.240.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26D1F43ED4; Tue, 10 Dec 2002 08:22:48 -0800 (PST) (envelope-from ctuffli@rose.agilent.com) Received: from relcos2.cos.agilent.com (relcos2.cos.agilent.com [130.29.152.237]) by msgbas2x.cos.agilent.com (Postfix) with ESMTP id D4602D46; Tue, 10 Dec 2002 09:22:42 -0700 (MST) Received: from rtl.rose.agilent.com (rtl.rose.agilent.com [130.30.179.189]) by relcos2.cos.agilent.com (Postfix) with ESMTP id 5755A18; Tue, 10 Dec 2002 09:22:42 -0700 (MST) Received: from mail.rose.agilent.com (mailsrv@bellhop [130.30.179.19]) by rtl.rose.agilent.com (8.9.3 (PHNE_18979)/8.9.3 SMKit7.1.0) with ESMTP id IAA18644; Tue, 10 Dec 2002 08:22:41 -0800 (PST) Received: from thegrail (anu.rose.agilent.com [156.140.225.186]) by mail.rose.agilent.com (Netscape Messaging Server 3.6) with ESMTP id AAA24A8; Tue, 10 Dec 2002 08:22:39 -0800 Received: by thegrail (Postfix, from userid 1001) id 1BCA984659; Tue, 10 Dec 2002 08:18:20 -0800 (PST) Date: Tue, 10 Dec 2002 08:18:20 -0800 From: Chuck Tuffli To: phk@FreeBSD.ORG Cc: freebsd-hackers@FreeBSD.ORG Subject: Re: registers not saved Message-ID: <20021210161813.GA681@thegrail.rose.agilent.com> References: <20021210154635.GC605@thegrail.rose.agilent.com> <99179.1039535914@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <99179.1039535914@critter.freebsd.dk> User-Agent: Mutt/1.4i Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Dec 10, 2002 at 04:58:34PM +0100, phk@FreeBSD.ORG wrote: > In message <20021210154635.GC605@thegrail.rose.agilent.com>, Chuck Tuffli write > s: > >I've been chasing down some weird panics in my CAM driver and have > >noticed that functions don't seem to save all register values before > >they modify them. > > > >For example, function A uses register ecx to hold the value of a > >pointer. Part way through, function A calls function B which uses > >ecx as a loop index. The bad part is function B never > >saves/restores the value of ecx and function A starts dereferencing > >garbage. > > > >An informal sampling of my driver seems to indicate that ebx gets > >pushed/poped at entry/exit but ecx and edx don't. Does any of this > >sound familiar? Thanks! > > There are strict rules for which registers should be saved and which not. The registers I see being saved are ebp, edi, esi, and ebx > You can modify these rules somewhat using weird compiler options, but > it should be consistent for all the code generated with the same > settings. These are the cc options I get when building the module (-I's removed) cc -O -pipe -I... -Werror -ggdb -DDBG -D_KERNEL -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -DKLD_MODULE -nostdinc -I- -I... -mpreferred-stack-boundary=2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -c /usr/home/ctuffli/dev/tsdk/samples/bsd/tach/tach_pci.c > Which FreeBSD version (uname -a) and which compiler version (cc -v) > is this ? [522] cc -v Using builtin specs. gcc version 2.95.4 20020320 [FreeBSD] llama# uname -a FreeBSD llama.rose.agilent.com 4.7-STABLE FreeBSD 4.7-STABLE #3: Tue Dec 3 14:59:35 PST 2002 ctuffli@thegrail:/home/ctuffli/dev/bsd/sys/compile/THEGRAIL i386 This is 4.7-RELEASE GENERIC compiled with -g, using DDB and all the CAM debug options. The INET6 and XSERVER options are commented out as well as the cpu I{3,4,5}86_CPU definitions (i.e. only I686_CPU is used). -- Chuck Tuffli Agilent Technologies, Storage and Networking To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 8:31:16 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 443FD37B404 for ; Tue, 10 Dec 2002 08:31:15 -0800 (PST) Received: from mailrelay1.lanl.gov (mailrelay1.lanl.gov [128.165.4.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2303543ED1 for ; Tue, 10 Dec 2002 08:31:14 -0800 (PST) (envelope-from rminnich@lanl.gov) Received: from ccs.lanl.gov (localhost.localdomain [127.0.0.1]) by mailrelay1.lanl.gov (8.12.3/8.12.3/(ccn-5)) with SMTP id gBAFJm9i001733 for ; Tue, 10 Dec 2002 08:19:48 -0700 Received: (qmail 695 invoked from network); 10 Dec 2002 08:19:48 -0700 Received: from unknown (HELO carotid.ccs.lanl.gov) (128.165.148.162) by 128.165.148.1 with SMTP; 10 Dec 2002 08:19:48 -0700 Received: (qmail 30631 invoked by uid 3499); 10 Dec 2002 08:19:47 -0700 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 10 Dec 2002 08:19:47 -0700 Date: Tue, 10 Dec 2002 08:19:47 -0700 (MST) From: "Ronald G. Minnich" X-X-Sender: rminnich@carotid.ccs.lanl.gov To: hackers@freebsd.org Subject: [FAQ] The Open Source Stackable PC BIOS (fwd) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG We would sure like to be able to boot freebsd, but freebsd makes bios calls. Any way we can change this (i.e. pass info freebsd needs via tables). Openbsd boots, so does win2k, so we're not linux-centric. ron ---------- Forwarded message ---------- Date: Mon, 9 Dec 2002 21:19:15 -0500 (EST) From: Adam Sulmicki To: Linux BIOS Mailing List Subject: [FAQ] The Open Source Stackable PC BIOS Hello, I have updated the FAQ with various comments from "Booting from floppy" thread. Comments on FAQ welcome. http://www.eax.com/ADLO-FAQ.html This FAQ does not intend to duplicate LinuxBIOS FAQ but rather give a bird view of the various BIOS projects and give someone new to the BIOS projects better idea what's it about and why someone would want to do this. In this release: new question * Q10: What is what? heavily updated * Q3: So is this accomplishment just art for art's sake? updated question * Q6: So when can I expect to see it in commerical motherboards? -- Adam Sulmicki http://www.eax.com The Supreme Headquarters of the 32 bit registers _______________________________________________ Linuxbios mailing list Linuxbios@clustermatic.org http://www.clustermatic.org/mailman/listinfo/linuxbios To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 9:13:52 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2303237B401 for ; Tue, 10 Dec 2002 09:13:51 -0800 (PST) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07F1543EA9 for ; Tue, 10 Dec 2002 09:13:50 -0800 (PST) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.12.5/8.12.5) with ESMTP id gBAHDkTJ013330; Tue, 10 Dec 2002 20:13:47 +0300 (MSK) (envelope-from marck@rinet.ru) Date: Tue, 10 Dec 2002 20:13:46 +0300 (MSK) From: Dmitry Morozovsky To: Lamont Granquist Cc: freebsd-hackers@FreeBSD.ORG Subject: Re: CVS_LOCAL_BRANCH_NUM? In-Reply-To: <20021210013718.I32160-100000@coredump.scriptkiddie.org> Message-ID: <20021210201135.H10798-100000@woozle.rinet.ru> References: <20021210013718.I32160-100000@coredump.scriptkiddie.org> X-NCC-RegID: ru.rinet MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 10 Dec 2002, Lamont Granquist wrote: LG> >From the man page, I'm not really sure where it makes a difference other LG> than when someone is playing with IFS, but $@ seems to be more of what I LG> intended... Please note quotes explicitly, "$@" is really needed where your parameters contain spaces (bad practice in filenames, yeah, but don't make yourself another one PITA you can avoid ;-P ) LG> And in case anyone is still reading this now, I'd like to throw out the LG> suggestion that CVS_LOCAL_BRANCH_NUM should really be an option to cvs LG> rtag and should thereby be settable in one's .cvsrc file and the option LG> should get transmitted to the cvs pserver, eliminating the kind of LG> asymmetry I just documented. I do agree; however, as cvs is a contributed software, this should be discussed and/or reported via cvsbug(8). [snip] Sincerely, D.Marck [DM5020, DM268-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 11:13:22 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8131A37B401; Tue, 10 Dec 2002 11:13:20 -0800 (PST) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id F336743EB2; Tue, 10 Dec 2002 11:13:19 -0800 (PST) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.6/8.12.6) id gBAJDCdI033631; Tue, 10 Dec 2002 13:13:13 -0600 (CST) (envelope-from dan) Date: Tue, 10 Dec 2002 13:13:12 -0600 From: Dan Nelson To: George Georgalis Cc: nbari@unixmexico.com, freebsd-isp@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: tail -f on webpage Message-ID: <20021210191312.GG48182@dan.emsphone.com> References: <26647.148.243.211.1.1039409754.squirrel@mail.unixmexico.com> <20021209054521.GB20704@dan.emsphone.com> <20021210185212.GC23550@trot.local> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021210185212.GC23550@trot.local> X-OS: FreeBSD 5.0-RC X-message-flag: Outlook Error User-Agent: Mutt/1.5.1i Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In the last episode (Dec 10), George Georgalis said: > On Sun, Dec 08, 2002 at 11:45:22PM -0600, Dan Nelson wrote: > > #! /bin/sh > > printf "Content-type: text/plain\r\n\r\n" > > tail -f /var/log/messages > > > > Unfortunatly if you try that your webserver will quickly fail because > the connection never closes. If your customers can create cgi scripts > they can bring down your server too. > > How fast depends on httpd.conf MaxSpareServers, and how quickly you > hit reload. The connection does close, but it looks like tail does not correctly exit: kevent(0x4,0x0,0x0,0xbfbff410,0x1,0x0) = 1 (0x1) read(0x3,0x804d000,0x2000) = 90 (0x5a) read(0x3,0x804d000,0x2000) = 0 (0x0) write(1,0x804f000,90) ERR#32 'Broken pipe' kevent(0x4,0x0,0x0,0xbfbff410,0x1,0x0) = 1 (0x1) read(0x3,0x804d000,0x2000) = 85 (0x55) read(0x3,0x804d000,0x2000) = 0 (0x0) write(1,0x804f000,85) ERR#32 'Broken pipe' kevent(0x4,0x0,0x0,0xbfbff410,0x1,0x0) = 1 (0x1) read(0x3,0x804d000,0x2000) = 34 (0x22) read(0x3,0x804d000,0x2000) = 0 (0x0) write(1,0x804f000,34) ERR#32 'Broken pipe' Not sure why though. The error-checking code in tail looks fine. -- Dan Nelson dnelson@allantgroup.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 11:13:28 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B4D737B40C for ; Tue, 10 Dec 2002 11:13:25 -0800 (PST) Received: from clover.kientzle.com (user-112uh9a.biz.mindspring.com [66.47.69.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E7F543EC2 for ; Tue, 10 Dec 2002 11:13:25 -0800 (PST) (envelope-from kientzle@acm.org) Received: from acm.org (c43 [66.47.69.43]) by clover.kientzle.com (8.11.3/8.11.3) with ESMTP id gBAJDKE58956 for ; Tue, 10 Dec 2002 11:13:20 -0800 (PST) (envelope-from kientzle@acm.org) Message-ID: <3DF63CD0.1020906@acm.org> Date: Tue, 10 Dec 2002 11:13:20 -0800 From: Tim Kientzle Reply-To: kientzle@acm.org User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.6) Gecko/20011206 X-Accept-Language: en-us, en MIME-Version: 1.0 To: hackers@Freebsd.org Subject: /sbin/session_logger? Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Looking at /sbin/init source, I stumbled across a reference to /sbin/session_logger This looks like a historical leftover, as it's defined but never actually used. Still, I'm curious, anyone happen to recall what this was for? Tim Kientzle To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 11:44:28 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F041E37B401 for ; Tue, 10 Dec 2002 11:44:27 -0800 (PST) Received: from nano-system.com (as3-4-6.far.s.bonet.se [217.215.64.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 541B543EC2 for ; Tue, 10 Dec 2002 11:44:20 -0800 (PST) (envelope-from zaiberd@nano-system.com) Received: (from zaiberd@localhost) by Tue Dec 10 20:51:17 2002nano-system.com (8.11.6/8.11.6) id gBAJpHR01114 for hackers@FreeBSD.org; Tue, 10 Dec 2002 20:51:17 +0100 (CET) Date: Tue, 10 Dec 2002 20:51:17 +0100 From: Alexander Funcke To: hackers@FreeBSD.org Subject: iicbb(4)/iic(4) debuging Message-ID: <20021210195117.GB322@gothis.peppernet.se> Mail-Followup-To: hackers@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I've more or less written a bus for GPIO kind of hardware and a device-driver for National Geode's SCx200 GPIO pins. I'd like to connect the gpiobus(4) till the iicbb(4) 'device' so I can talk to the lm-sensors and other stuff that hangs on the iicbus(4) (i.e. two GPIOs). Is there any small programs that talks to iic(4) that can be used for debuging purposes? I have tried to scan the archives and google but with out result. TIA, /Alexander To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 11:53:36 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CAFD37B401; Tue, 10 Dec 2002 11:53:36 -0800 (PST) Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB96C43EB2; Tue, 10 Dec 2002 11:53:35 -0800 (PST) (envelope-from dillon@apollo.backplane.com) Received: from apollo.backplane.com (localhost [127.0.0.1]) by apollo.backplane.com (8.12.5/8.12.5) with ESMTP id gBAJrYOM022096; Tue, 10 Dec 2002 11:53:34 -0800 (PST) (envelope-from dillon@apollo.backplane.com) Received: (from dillon@localhost) by apollo.backplane.com (8.12.5/8.12.5/Submit) id gBAJrYkx022095; Tue, 10 Dec 2002 11:53:34 -0800 (PST) (envelope-from dillon) Date: Tue, 10 Dec 2002 11:53:34 -0800 (PST) From: Matthew Dillon Message-Id: <200212101953.gBAJrYkx022095@apollo.backplane.com> To: Chuck Tuffli Cc: phk@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: registers not saved References: <20021210154635.GC605@thegrail.rose.agilent.com> <99179.1039535914@critter.freebsd.dk> <20021210161813.GA681@thegrail.rose.agilent.com> Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In C for the IA32, EAX, ECX, and EDX are scratch registers. All other registers must be saved and restored by the procedure. Also keep in mind that the return value of a procedure is placed in eax. If the return value is a 64 bit value, it is placed in eax and edx. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 11:56:44 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8097E37B401 for ; Tue, 10 Dec 2002 11:56:43 -0800 (PST) Received: from warez.scriptkiddie.org (uswest-dsl-142-38.cortland.com [209.162.142.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DB2543EC2 for ; Tue, 10 Dec 2002 11:56:39 -0800 (PST) (envelope-from lamont@scriptkiddie.org) Received: from [192.168.69.11] (unknown [192.168.69.11]) by warez.scriptkiddie.org (Postfix) with ESMTP id 0E0D862D1A; Tue, 10 Dec 2002 11:56:26 -0800 (PST) Date: Tue, 10 Dec 2002 11:56:26 -0800 (PST) From: Lamont Granquist To: Dmitry Morozovsky Cc: freebsd-hackers@FreeBSD.ORG Subject: Re: CVS_LOCAL_BRANCH_NUM? In-Reply-To: <20021210201135.H10798-100000@woozle.rinet.ru> Message-ID: <20021210115422.T3061-100000@coredump.scriptkiddie.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 10 Dec 2002, Dmitry Morozovsky wrote: > On Tue, 10 Dec 2002, Lamont Granquist wrote: > LG> >From the man page, I'm not really sure where it makes a difference other > LG> than when someone is playing with IFS, but $@ seems to be more of what I > LG> intended... > > Please note quotes explicitly, "$@" is really needed where your parameters > contain spaces (bad practice in filenames, yeah, but don't make yourself > another one PITA you can avoid ;-P ) got it. > LG> And in case anyone is still reading this now, I'd like to throw out the > LG> suggestion that CVS_LOCAL_BRANCH_NUM should really be an option to cvs > LG> rtag and should thereby be settable in one's .cvsrc file and the option > LG> should get transmitted to the cvs pserver, eliminating the kind of > LG> asymmetry I just documented. > > I do agree; however, as cvs is a contributed software, this should be discussed > and/or reported via cvsbug(8). Actually CVS_LOCAL_BRANCH_NUM is a local hack in FreeBSD, and which originated with FreeBSD, so freebsd-hackers is as good a place as any to bitch about it... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 11:57:41 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1622537B401 for ; Tue, 10 Dec 2002 11:57:39 -0800 (PST) Received: from mail.speakeasy.net (mail17.speakeasy.net [216.254.0.217]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8194843ED4 for ; Tue, 10 Dec 2002 11:57:33 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 14432 invoked from network); 10 Dec 2002 19:57:39 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail17.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 10 Dec 2002 19:57:39 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.6/8.12.6) with ESMTP id gBAJvVuH063698; Tue, 10 Dec 2002 14:57:31 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20021210154635.GC605@thegrail.rose.agilent.com> Date: Tue, 10 Dec 2002 14:57:33 -0500 (EST) From: John Baldwin To: Chuck Tuffli Subject: RE: registers not saved Cc: freebsd-hackers@freebsd.org Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 10-Dec-2002 Chuck Tuffli wrote: > I've been chasing down some weird panics in my CAM driver and have > noticed that functions don't seem to save all register values before > they modify them. > > For example, function A uses register ecx to hold the value of a pointer. Part way through, > function A calls function B which uses ecx as a loop index. The bad part is function B never > saves/restores the value of ecx and function A starts dereferencing garbage. > > An informal sampling of my driver seems to indicate that ebx gets > pushed/poped at entry/exit but ecx and edx don't. Does any of this > sound familiar? Thanks! Yes, eax, ebx, and edx are not "call-safe" registers. If you are writing your own function in assembly and you call a function you need to either save those registers yourself or reload their values. If you are writing a function called by other functions your function needs to preserve ebx, ebp, esi, and edi either by saving and restoring them or by not changing their values. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 13: 9:34 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF49837B401 for ; Tue, 10 Dec 2002 13:09:33 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 57FAF43EC2 for ; Tue, 10 Dec 2002 13:09:33 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 28435 invoked by uid 1000); 10 Dec 2002 21:09:34 -0000 Date: Tue, 10 Dec 2002 13:09:34 -0800 (PST) From: Nate Lawson To: Kyunghwan Kim Cc: freebsd-hackers@freebsd.org Subject: Re: Kernel process(thread) in SMP system In-Reply-To: <20021206141136.GA16433@ada.snu.ac.kr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 6 Dec 2002, Kyunghwan Kim wrote: > I've heard that kernel of RELENG_4 branch is single-threaded, > but can hardly check out if kernel process(thread) like pagedaemon can > run on other cpu concurrently when another cpu is processing an network > interrupt. Using Kernel process(thread) for cpu-bound job in SMP environment > will be beneficial? It there any method to tell which process including > user and kernel process is in kernel mode? -stable can run multiple processes at once but only one can enter the kernel at a time. A network interrupt runs at splnet and the pagedaemon runs with no interupts disabled (and splvm at some parts) so technically they can run concurrently. Still, a user proc can run concurrently with a splnet interrupt and vm_pageout() kern proc. So going to a kern proc has no bearing on your cpu-bound work. Just use multiple user procs (i.e. fork()) and you'll get the most out of your -stable box, given that your computation is divisible. You can tell what procs are doing with "ps axl" or top. If they're running, top shows as CPU0 or 1. Unfortunately, this doesn't tell if it's in kernel mode or not -- you have to use profiling to get an average view of this. -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 14:26:32 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5967437B404 for ; Tue, 10 Dec 2002 14:26:30 -0800 (PST) Received: from mx9.mail.ru (mx9.mail.ru [194.67.57.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F70443E4A for ; Tue, 10 Dec 2002 14:26:29 -0800 (PST) (envelope-from 1alia@mail.ru) Received: from [212.248.7.25] (helo=1alia) by mx9.mail.ru with smtp (Exim SMTP.9) id 18Lspf-000OKu-00 for freebsd-hackers@freebsd.org; Wed, 11 Dec 2002 01:26:27 +0300 From: 1alia <1alia@mail.ru> To: freebsd-hackers@freebsd.org Subject: Ðàáîòà äëÿ Âàñ X-Mailer: Microsoft Outlook Express 5.00.2615.200 Reply-To: alia@mail.ru Date: Wed, 11 Dec 2002 01:26:23 +0300 Mime-Version: 1.0 Content-Type: text/plain; charset=Windows-1251 Message-Id: Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Çäðàâñòâóéòå! Ðàáîòà â ñåòè äëÿ Âàñ http://www.getjob.boom.ru Èçâèíèòå çà áåñïîêîéñòâî. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 14:33:59 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4131C37B401; Tue, 10 Dec 2002 14:33:40 -0800 (PST) Received: from www1.mailru.com (www1.mailru.com [80.68.244.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAC8343EA9; Tue, 10 Dec 2002 14:33:38 -0800 (PST) (envelope-from rvdstudio@front.ru) Received: by HotBOX.Ru WebMail v2.1 id gBAKg6bn081637 for ; Date: Tue, 10 Dec 2002 23:42:06 +0300 (MSK) Message-Id: <200212102042.gBAKg6bn081637@www1.mailru.com> From: RVD-Studio To: rvd-studio@inbox.ru MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 8bit X-Mailer: Free WebMail HotBOX.ru X-Originating-IP: [213.59.67.35] Subject: ðÒÏÇÒÁÍÍÉÒÏ×ÁÎÉÅ É ÄÉÚÁÊÎ ÄÌÑ ÷ÁÓ! Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG RVD-Studio, ×ÉÒÔÕÁÌØÎÁÑ ÓÔÕÄÉÑ ÄÉÚÁÊÎÁ É ÐÒÏÇÒÁÍÍÉÒÏ×ÁÎÉÑ ÐÒÅÄÌÁÇÁÅÔ ÓÌÅÄÕÀÝÉÅ ÕÓÌÕÇÉ: - òÁÚÒÁÂÏÔËÁ É ÓÏÐÒÏ×ÏÖÄÅÎÉÅ ÐÒÏÇÒÁÍÍÎÏÇÏ ÏÂÅÓÐÅÞÅÎÉÑ ÐÏ ÷ÁÛÉÍ ÜÓËÉÚÁÍ É/ÉÌÉ ÏÐÉÓÁÎÉÀ - éÚÇÏÔÏ×ÌÅÎÉÅ ÓÁÊÔÏ× ÄÌÑ ÆÉÚÉÞÅÓËÉÈ ÌÉÃ É ÏÒÇÁÎÉÚÁÃÉÊ - 3D-ÍÏÄÅÌÉÒÏ×ÁÎÉÅ ÄÌÑ Web É ÎÅ ÔÏÌØËÏ - ðÒÏÅËÔÉÒÏ×ÁÎÉÅ 3D É Flash - ÁÎÉÍÁÃÉÊ îáû ëïîôáëôîùê e-mail rvd-studion@inbox.ru õÂÅÄÉÔÅÌØÎÁÑ ÐÒÏÓØÂÁ ÐÏÌØÚÏ×ÁÔØÓÑ ÄÌÑ Ó×ÑÚÉ ÔÏÌØËÏ ÕËÁÚÁÎÎÙÍ e- mail ÁÄÒÅÓÏÍ, Á ÎÅ ÏÂÒÁÔÎÙÍ ÁÄÒÅÓÏÍ ÄÁÎÎÏÇÏ ÓÏÏÂÝÅÎÉÑ! íÙ ÇÁÒÁÎÔÉÒÕÅÍ ÉÎÄÉ×ÉÄÕÁÌØÎÙÊ ÐÏÄÈÏÄ Ë ËÁÖÄÏÍÕ ËÌÉÅÎÔÕ, ÄÏÂÒÏÓÏ×ÅÓÔÎÏÓÔØ ÒÁÂÏÔ É ÒÁÚÕÍÎÙÅ ÃÅÎÙ. ëÁË ÍÙ ÒÁÂÏÔÁÅÍ? ÷ù ×ÙÓÙÌÁÅÔÅ ÎÁ ÎÁÛ email ÏÐÉÓÁÎÉÅ ÐÒÏÅËÔÁ ÉÌÉ ÐÒÏÇÒÁÍÍÎÏÇÏ ÏÂÅÓÐÅÞÅÎÉÑ, × ËÏÔÏÒÏÍ ÷Ù ÎÕÖÄÁÅÔÅÓØ, Á ÔÁËÖÅ ÕËÁÚÙ×ÁÅÔÅ ÓÒÏË, × ËÏÔÏÒÙÊ ÄÏÌÖÎÙ ÂÙÔØ ×ÙÐÏÌÎÅÎÙ ÒÁÂÏÔÙ. íù ÏÃÅÎÉ×ÁÅÍ ÓÔÏÉÍÏÓÔØ ÐÒÏÅËÔÁ É ÓÏÏÂÝÁÅÍ ÷áí åÓÌÉ ÷áó ÕÓÔÒÁÉ×ÁÅÔ ÃÅÎÁ, íù ÄÅÌÁÅÍ ÄÅÍÏ×ÅÒÓÉÀ É ×ÙÓÙÌÁÅÍ ÅÅ ÷áí ÷ù ÐÌÁÔÉÔÅ - É ÐÏÌÕÞÁÅÔÅ ÐÏÌÎÏÆÕÎËÃÉÏÎÁÌØÎÕÀ ×ÅÒÓÉÀ ÐÒÏÄÕËÔÁ. ÷ù ÐÌÁÔÉÔÅ ÔÏÌØËÏ ÔÏÇÄÁ, ËÏÇÄÁ Õ×ÅÒÅÎÙ, ÞÔÏ îáûá ÒÁÂÏÔÁ ÷áó ÕÓÔÒÁÉ×ÁÅÔ úáëáöéôå ÷áû ðòïåëô ðòñíï óåêþáó! |÷ÁÛ ÁÄÒÅÓ ×ÚÑÔ ÉÚ ÏÔËÒÙÔÙÈ ÉÓÔÏÞÎÉËÏ× éîôåòîåô| To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 14:58:11 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 428F537B404 for ; Tue, 10 Dec 2002 14:58:10 -0800 (PST) Received: from bear.orl.ru (bear.orl.ru [213.59.67.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10A3543E4A for ; Tue, 10 Dec 2002 14:58:09 -0800 (PST) (envelope-from rvd-studion@inbox.ru) Received: from odb ([213.59.67.35]) by bear.orl.ru (8.11.1/8.11.1) with SMTP id gBAMsr895674 for ; Wed, 11 Dec 2002 01:54:53 +0300 (MSK) Date: Wed, 11 Dec 2002 01:54:53 +0300 (MSK) Message-Id: <200212102254.gBAMsr895674@bear.orl.ru> From: RVD-STUDIO To: freebsd-hackers@freebsd.org Subject: Ïðîãðàììèðîâàíèå è äèçàéí äëÿ Âàñ! Reply-To: rvd-studion@inbox.ru Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG RVD-Studio, âèðòóàëüíàÿ ñòóäèÿ äèçàéíà è ïðîãðàììèðîâàíèÿ ïðåäëàãàåò ñëåäóþùèå óñëóãè: - Ðàçðàáîòêà è ñîïðîâîæäåíèå ïðîãðàììíîãî îáåñïå÷åíèÿ ïî Âàøèì ýñêèçàì è/èëè îïèñàíèþ - Èçãîòîâëåíèå ñàéòîâ äëÿ ôèçè÷åñêèõ ëèö è îðãàíèçàöèé - 3D-ìîäåëèðîâàíèå äëÿ Web è íå òîëüêî - Ïðîåêòèðîâàíèå 3D è Flash - àíèìàöèé ÍÀØ ÊÎÍÒÀÊÒÍÛÉ e-mail rvd-studion@inbox.ru Ìû ãàðàíòèðóåì èíäèâèäóàëüíûé ïîäõîä ê êàæäîìó êëèåíòó, äîáðîñîâåñòíîñòü ðàáîò è ðàçóìíûå öåíû. Êàê ìû ðàáîòàåì? ÂÛ âûñûëàåòå íà íàø email îïèñàíèå ïðîåêòà èëè ïðîãðàììíîãî îáåñïå÷åíèÿ, â êîòîðîì Âû íóæäàåòåñü, à òàêæå óêàçûâàåòå ñðîê, â êîòîðûé äîëæíû áûòü âûïîëíåíû ðàáîòû. ÌÛ îöåíèâàåì ñòîèìîñòü ïðîåêòà è ñîîáùàåì ÂÀÌ Åñëè ÂÀÑ óñòðàèâàåò öåíà, ÌÛ äåëàåì äåìîâåðñèþ è âûñûëàåì åå ÂÀÌ ÂÛ ïëàòèòå - è ïîëó÷àåòå ïîëíîôóíêöèîíàëüíóþ âåðñèþ ïðîäóêòà. ÂÛ ïëàòèòå òîëüêî òîãäà, êîãäà óâåðåíû, ÷òî ÍÀØÀ ðàáîòà ÂÀÑ óñòðàèâàåò ÇÀÊÀÆÈÒÅ ÂÀØ ÏÐÎÅÊÒ ÏÐßÌÎ ÑÅÉ×ÀÑ! |Âàø àäðåñ âçÿò èç îòêðûòûõ èñòî÷íèêîâ ÈÍÒÅÐÍÅÒ| To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 21:55:28 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5F5937B404 for ; Tue, 10 Dec 2002 21:55:26 -0800 (PST) Received: from dynamic.galis.org (ool-4350143e.dyn.optonline.net [67.80.20.62]) by mx1.FreeBSD.org (Postfix) with SMTP id B775E43EA9 for ; Tue, 10 Dec 2002 21:55:25 -0800 (PST) (envelope-from quack@galis.org) Received: (qmail 24046 invoked by uid 1010); 10 Dec 2002 18:52:12 -0000 Date: Tue, 10 Dec 2002 13:52:12 -0500 From: George Georgalis To: Dan Nelson Cc: nbari@unixmexico.com, freebsd-isp@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: tail -f on webpage Message-ID: <20021210185212.GC23550@trot.local> References: <26647.148.243.211.1.1039409754.squirrel@mail.unixmexico.com> <20021209054521.GB20704@dan.emsphone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021209054521.GB20704@dan.emsphone.com> User-Agent: Mutt/1.3.28i Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Dec 08, 2002 at 11:45:22PM -0600, Dan Nelson wrote: >In the last episode (Dec 08), nbari@unixmexico.com said: >> Hi all >> >> How can i make a tail -f and show the results in a web page with >> out having to reload the page every N seconds >> >> i am using PHP in a script like: >> >> > $error_log = '/var/log/apache/log'; >> passthru ("tail -f $error_log"); >> ?> > >The following 3-line CGI works fine: > >#! /bin/sh >printf "Content-type: text/plain\r\n\r\n" >tail -f /var/log/messages > Unfortunatly if you try that your webserver will quickly fail because the connection never closes. If your customers can create cgi scripts they can bring down your server too. How fast depends on httpd.conf MaxSpareServers, and how quickly you hit reload. // George -- GEORGE GEORGALIS, System Admin/Architect cell: 347-451-8229 Security Services, Web, Mail, mailto:george@galis.org Multimedia, DB, DNS and Metrics. http://www.galis.org/george To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Tue Dec 10 23:55:15 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B57E837B401 for ; Tue, 10 Dec 2002 23:55:13 -0800 (PST) Received: from hotmail.com (f38.pav0.hotmail.com [64.4.32.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id 754D143EB2 for ; Tue, 10 Dec 2002 23:55:13 -0800 (PST) (envelope-from oykai@msn.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 10 Dec 2002 23:55:13 -0800 Received: from 210.74.136.33 by pv0fd.pav0.hotmail.msn.com with HTTP; Wed, 11 Dec 2002 07:55:12 GMT X-Originating-IP: [210.74.136.33] From: "ouyang kai" To: hackers@FreeBSD.org Cc: peter@wemm.org Subject: Some problems about KSE Date: Wed, 11 Dec 2002 15:55:12 +0800 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 11 Dec 2002 07:55:13.0365 (UTC) FILETIME=[A2C8B850:01C2A0EA] Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, everybody, I want to make sure whether we can program the multi-thread code based on KSE in FreeBSD5.0 RC-1. I have make in '/usr/src/lib/libpthread', I found some new things in '/usr/lib' as follow: lrwxr-xr-x 1 root wheel 11 Dec 11 16:04 libkse.so -> libkse.so.1 -r--r--r-- 1 root wheel 68780 Dec 11 16:04 libkse.so.1 -r--r--r-- 1 root wheel 164448 Dec 11 16:04 libkse_p.a -r--r--r-- 1 root wheel 153854 Dec 11 16:04 libkse.a So if I program. How can I use the kse? I can use pthread(3) as traditional manner, only using '-lpthread' instead of '-pthread' in my makefile, right? when I use /usr/src/tools/KSE/ksetest/ksetest program , it always cause my box crash. I have report this issue to Julian. I am seeing KSE(2), I have some puzzles about that. 1. upcall is really means what? Does it represent through 'km_func'? if it were true, the 'km_func' is indicated by whom? UTS, Kernel, or user program, I do not know. 2. When one process has more than one KSEG, the signal should be delivered to which KSEG? The manual said it is indeterminate. I do not know how the signal could be delivered to the special KSEG exactly? Thank you! Best Regards Ouyang Kai _________________________________________________________________ Add photos to your e-mail with MSN 8. Get 2 months FREE*. http://join.msn.com/?page=features/featuredemail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Wed Dec 11 1: 0:34 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1100E37B401 for ; Wed, 11 Dec 2002 01:00:33 -0800 (PST) Received: from straylight.ringlet.net (office.sbnd.net [217.75.140.130]) by mx1.FreeBSD.org (Postfix) with SMTP id 2747F43E4A for ; Wed, 11 Dec 2002 01:00:26 -0800 (PST) (envelope-from roam@ringlet.net) Received: (qmail 3730 invoked by uid 1000); 11 Dec 2002 08:59:56 -0000 Date: Wed, 11 Dec 2002 10:59:55 +0200 From: Peter Pentchev To: Lamont Granquist Cc: Dmitry Morozovsky , freebsd-hackers@FreeBSD.ORG Subject: Re: CVS_LOCAL_BRANCH_NUM? Message-ID: <20021211085954.GB371@straylight.oblivion.bg> Mail-Followup-To: Lamont Granquist , Dmitry Morozovsky , freebsd-hackers@FreeBSD.ORG References: <20021210201135.H10798-100000@woozle.rinet.ru> <20021210115422.T3061-100000@coredump.scriptkiddie.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6c2NcOVqGQ03X4Wi" Content-Disposition: inline In-Reply-To: <20021210115422.T3061-100000@coredump.scriptkiddie.org> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --6c2NcOVqGQ03X4Wi Content-Type: text/plain; charset=windows-1251 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Dec 10, 2002 at 11:56:26AM -0800, Lamont Granquist wrote: >=20 >=20 > On Tue, 10 Dec 2002, Dmitry Morozovsky wrote: > > On Tue, 10 Dec 2002, Lamont Granquist wrote: > > LG> >From the man page, I'm not really sure where it makes a difference= other > > LG> than when someone is playing with IFS, but $@ seems to be more of w= hat I > > LG> intended... > > > > Please note quotes explicitly, "$@" is really needed where your paramet= ers > > contain spaces (bad practice in filenames, yeah, but don't make yourself > > another one PITA you can avoid ;-P ) >=20 > got it. Mmm.. I am not really sure if we need quotes in this particular case. In my experience, the CVS invocation in the server or pserver case almost always has more than one argument (at the very least, the 'server' or 'pserver' keyword and one 'allow-root' option). The quotes around "$@" would make the whole param string be passed as a single parameter to the "real" CVS binary, which might not be quite the desired result... G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 This sentence claims to be an Epimenides paradox, but it is lying. --6c2NcOVqGQ03X4Wi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE99v6K7Ri2jRYZRVMRAg7EAKCxMRbbzrBlPSCAGGt/4Ia/+gBrxACcDF0j CyjMNCl2IPAeuMwyh09qEk4= =FhqW -----END PGP SIGNATURE----- --6c2NcOVqGQ03X4Wi-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Wed Dec 11 1:40:18 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB87137B401 for ; Wed, 11 Dec 2002 01:40:16 -0800 (PST) Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61F0243EC5 for ; Wed, 11 Dec 2002 01:40:15 -0800 (PST) (envelope-from stijn@pcwin002.win.tue.nl) Received: from pcwin002.win.tue.nl (localhost [127.0.0.1]) by pcwin002.win.tue.nl (8.12.6/8.12.6) with ESMTP id gBB9e4lv053374; Wed, 11 Dec 2002 10:40:04 +0100 (CET) (envelope-from stijn@pcwin002.win.tue.nl) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.12.6/8.12.6/Submit) id gBB9e4nC053373; Wed, 11 Dec 2002 10:40:04 +0100 (CET) Date: Wed, 11 Dec 2002 10:40:04 +0100 From: Stijn Hoop To: Peter Pentchev Cc: Lamont Granquist , Dmitry Morozovsky , freebsd-hackers@freebsd.org Subject: Re: CVS_LOCAL_BRANCH_NUM? Message-ID: <20021211094004.GC52865@pcwin002.win.tue.nl> References: <20021210201135.H10798-100000@woozle.rinet.ru> <20021210115422.T3061-100000@coredump.scriptkiddie.org> <20021211085954.GB371@straylight.oblivion.bg> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="1SQmhf2mF2YjsYvc" Content-Disposition: inline In-Reply-To: <20021211085954.GB371@straylight.oblivion.bg> User-Agent: Mutt/1.4i X-Bright-Idea: Let's abolish HTML mail! Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --1SQmhf2mF2YjsYvc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Dec 11, 2002 at 10:59:55AM +0200, Peter Pentchev wrote: > On Tue, Dec 10, 2002 at 11:56:26AM -0800, Lamont Granquist wrote: > > On Tue, 10 Dec 2002, Dmitry Morozovsky wrote: > > > Please note quotes explicitly, "$@" is really needed where your param= eters > > > contain spaces (bad practice in filenames, yeah, but don't make yours= elf > > > another one PITA you can avoid ;-P ) > >=20 > > got it. >=20 > Mmm.. I am not really sure if we need quotes in this particular case. > In my experience, the CVS invocation in the server or pserver case > almost always has more than one argument (at the very least, the > 'server' or 'pserver' keyword and one 'allow-root' option). The quotes > around "$@" would make the whole param string be passed as a single > parameter to the "real" CVS binary, which might not be quite the desired > result... No, that's not the behaviour with /bin/sh, from the man page: @ Expands to the positional parameters, starting from one. When the expansion occurs within double-quotes, each positional par= am- eter expands as a separate argument. If there are no position= al parameters, the expansion of @ generates zero arguments, even when @ is double-quoted. What this basically means, for examp= le, is if $1 is ``abc'' and $2 is ``def ghi'', then "$@" expands to the two arguments: "abc" "def ghi" I think "$@" (with the quotes) is ok. --Stijn --=20 Help Wanted: Telepath. You know where to apply. --1SQmhf2mF2YjsYvc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE99wf0Y3r/tLQmfWcRAjhmAJ96nAy17A64ghe7ImDgVAKp5qULYwCgoPle Sy1QeXfxA2xdGlchs0wWrcY= =KsS1 -----END PGP SIGNATURE----- --1SQmhf2mF2YjsYvc-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Wed Dec 11 1:51: 1 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06FAD37B401 for ; Wed, 11 Dec 2002 01:50:59 -0800 (PST) Received: from straylight.ringlet.net (office.sbnd.net [217.75.140.130]) by mx1.FreeBSD.org (Postfix) with SMTP id 94E0843EC2 for ; Wed, 11 Dec 2002 01:50:55 -0800 (PST) (envelope-from roam@ringlet.net) Received: (qmail 9122 invoked by uid 1000); 11 Dec 2002 09:50:34 -0000 Date: Wed, 11 Dec 2002 11:50:34 +0200 From: Peter Pentchev To: Stijn Hoop Cc: Lamont Granquist , Dmitry Morozovsky , freebsd-hackers@freebsd.org Subject: Re: CVS_LOCAL_BRANCH_NUM? Message-ID: <20021211095034.GC3860@straylight.oblivion.bg> Mail-Followup-To: Stijn Hoop , Lamont Granquist , Dmitry Morozovsky , freebsd-hackers@freebsd.org References: <20021210201135.H10798-100000@woozle.rinet.ru> <20021210115422.T3061-100000@coredump.scriptkiddie.org> <20021211085954.GB371@straylight.oblivion.bg> <20021211094004.GC52865@pcwin002.win.tue.nl> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="1sNVjLsmu1MXqwQ/" Content-Disposition: inline In-Reply-To: <20021211094004.GC52865@pcwin002.win.tue.nl> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --1sNVjLsmu1MXqwQ/ Content-Type: text/plain; charset=windows-1251 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Dec 11, 2002 at 10:40:04AM +0100, Stijn Hoop wrote: > On Wed, Dec 11, 2002 at 10:59:55AM +0200, Peter Pentchev wrote: > > On Tue, Dec 10, 2002 at 11:56:26AM -0800, Lamont Granquist wrote: > > > On Tue, 10 Dec 2002, Dmitry Morozovsky wrote: > > > > Please note quotes explicitly, "$@" is really needed where your par= ameters > > > > contain spaces (bad practice in filenames, yeah, but don't make you= rself > > > > another one PITA you can avoid ;-P ) > > >=20 > > > got it. > >=20 > > Mmm.. I am not really sure if we need quotes in this particular case. > > In my experience, the CVS invocation in the server or pserver case > > almost always has more than one argument (at the very least, the > > 'server' or 'pserver' keyword and one 'allow-root' option). The quotes > > around "$@" would make the whole param string be passed as a single > > parameter to the "real" CVS binary, which might not be quite the desired > > result... >=20 > No, that's not the behaviour with /bin/sh, from the man page: >=20 > @ Expands to the positional parameters, starting from one. Wh= en > the expansion occurs within double-quotes, each positional p= aram- > eter expands as a separate argument. If there are no positi= onal > parameters, the expansion of @ generates zero arguments, even > when @ is double-quoted. What this basically means, for exa= mple, > is if $1 is ``abc'' and $2 is ``def ghi'', then "$@" expands= to > the two arguments: >=20 > "abc" "def ghi" >=20 > I think "$@" (with the quotes) is ok. Oops. Thanks for the clarification. Never had to deal with $@ before, actually. /me crawls back into his hole. G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 No language can express every thought unambiguously, least of all this one. --1sNVjLsmu1MXqwQ/ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE99wpq7Ri2jRYZRVMRAqNAAJ9Wk9ivJCSMgNUdK2xXKZ8PCA5JrgCgnmbF uxY8p+6JJX0izxEninAZUYI= =gHM4 -----END PGP SIGNATURE----- --1sNVjLsmu1MXqwQ/-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Wed Dec 11 3:42: 6 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AB4337B401 for ; Wed, 11 Dec 2002 03:42:05 -0800 (PST) Received: from sdf.lonestar.org (sdf.lonestar.org [207.202.214.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4E7343EDC for ; Wed, 11 Dec 2002 03:42:04 -0800 (PST) (envelope-from omestre@sdf.lonestar.org) Received: by sdf.lonestar.org (8.11.6+3.4W/8.11.6) id gBBBg3G22570; Wed, 11 Dec 2002 11:42:03 GMT Date: Wed, 11 Dec 2002 11:42:02 +0000 (UTC) From: omestre To: freebsd-hackers@freebsd.org Subject: soft updates Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello all... In this moment, i have one linux server to provides me NFS sharing... Why? Because i need xfs instant recovery feature, and the performance. I don't know very well about soft updates, and i would like have only BSD systems... Somebody knows if i could and how to install FreeBSD with xfs? or how can i create a ufs filesystem with soft updates for big volumes (+300GB) and NFS services? Thanks! omestre@sdf.lonestar.org SDF Public Access UNIX System - http://sdf.lonestar.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Wed Dec 11 4:30:16 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40EDC37B401 for ; Wed, 11 Dec 2002 04:30:15 -0800 (PST) Received: from ams-msg-core-1.cisco.com (ams-msg-core-1.cisco.com [144.254.74.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21D6C43E4A for ; Wed, 11 Dec 2002 04:30:14 -0800 (PST) (envelope-from molter@tin.it) Received: from cisco.com (localhost [127.0.0.1]) by ams-msg-core-1.cisco.com (8.12.2/8.12.2) with ESMTP id gBBCSjvM027975 for ; Wed, 11 Dec 2002 13:28:45 +0100 (MET) Received: from www.example.org (dhcp-nic-val-26-98.cisco.com [64.103.26.98]) by cisco.com (8.8.8+Sun/8.8.8) with SMTP id NAA20633 for ; Wed, 11 Dec 2002 13:30:06 +0100 (MET) Received: (qmail 13024 invoked by uid 1000); 11 Dec 2002 09:04:07 -0000 Message-ID: <20021211090406.13023.qmail@cobweb.example.org> Date: Wed, 11 Dec 2002 10:04:06 +0100 From: Marco Molteni To: hackers@freebsd.org Subject: kernel/userland ssh filesystem for FreeBSD? X-Mailer: Sylpheed version 0.8.6 (GTK+ 1.2.10; i386-portbld-freebsd4.7) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, as you might know, both kde (via kio-fish) and gnome (via gnome virtual file system) provide a userland filesystem-like API that allows to "mount" a remote filesystem using ssh. What I don't like about those solutions is that they require the application to use a particular API (kio slave or gnome vfs). Another approach, that provides a real filesystem interface, is the Linux Userspace File System. Quoting from http://lufs.sourceforge.net/lufs/intro.html: LUFS is a hybrid userspace filesystem framework supporting an indefinite number of filesystems transparently for any application. It consists of a kernel module and an userspace daemon. Basically it delegates most of the VFS calls to a specialized daemon which handles them. Now the question: if I wanted to do something similar for FreeBSD, how would I do it? Any high-level hints? thanks Marco To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Wed Dec 11 4:35:20 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD43537B401 for ; Wed, 11 Dec 2002 04:35:18 -0800 (PST) Received: from straylight.ringlet.net (office.sbnd.net [217.75.140.130]) by mx1.FreeBSD.org (Postfix) with SMTP id 6941343EC5 for ; Wed, 11 Dec 2002 04:35:13 -0800 (PST) (envelope-from roam@ringlet.net) Received: (qmail 906 invoked by uid 1000); 11 Dec 2002 12:34:45 -0000 Date: Wed, 11 Dec 2002 14:34:44 +0200 From: Peter Pentchev To: Marco Molteni Cc: hackers@freebsd.org Subject: Re: kernel/userland ssh filesystem for FreeBSD? Message-ID: <20021211123444.GI3860@straylight.oblivion.bg> Mail-Followup-To: Marco Molteni , hackers@freebsd.org References: <20021211090406.13023.qmail@cobweb.example.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0NB0lE7sNnW8+0qW" Content-Disposition: inline In-Reply-To: <20021211090406.13023.qmail@cobweb.example.org> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --0NB0lE7sNnW8+0qW Content-Type: text/plain; charset=windows-1251 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Dec 11, 2002 at 10:04:06AM +0100, Marco Molteni wrote: > Hi, >=20 > as you might know, both kde (via kio-fish) and gnome (via gnome virtual > file system) provide a userland filesystem-like API that allows to "mount= " a > remote filesystem using ssh. What I don't like about those solutions is > that they require the application to use a particular API (kio slave or > gnome vfs). >=20 > Another approach, that provides a real filesystem interface, is the > Linux Userspace File System. >=20 > Quoting from http://lufs.sourceforge.net/lufs/intro.html: >=20 > LUFS is a hybrid userspace filesystem framework supporting an indefin= ite > number of filesystems transparently for any application. It consists = of > a kernel module and an userspace daemon. Basically it delegates most = of > the VFS calls to a specialized daemon which handles them. >=20 > Now the question: if I wanted to do something similar for FreeBSD, how > would I do it? Any high-level hints? Take a look at mount_portal(8). G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 When you are not looking at it, this sentence is in Spanish. --0NB0lE7sNnW8+0qW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE99zDk7Ri2jRYZRVMRAhR4AKCbZfGN+kWw0nFGhSfT9zR0p6lvFwCfd2Rd 0LugxrXJGxJHNht4ZNvxbro= =h37M -----END PGP SIGNATURE----- --0NB0lE7sNnW8+0qW-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Wed Dec 11 4:39:49 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1926B37B401 for ; Wed, 11 Dec 2002 04:39:48 -0800 (PST) Received: from straylight.ringlet.net (office.sbnd.net [217.75.140.130]) by mx1.FreeBSD.org (Postfix) with SMTP id 5DE1643E4A for ; Wed, 11 Dec 2002 04:39:44 -0800 (PST) (envelope-from roam@ringlet.net) Received: (qmail 5585 invoked by uid 1000); 11 Dec 2002 12:39:22 -0000 Date: Wed, 11 Dec 2002 14:39:22 +0200 From: Peter Pentchev To: Marco Molteni Cc: hackers@FreeBSD.org Subject: Re: kernel/userland ssh filesystem for FreeBSD? Message-ID: <20021211123922.GJ3860@straylight.oblivion.bg> Mail-Followup-To: Marco Molteni , hackers@FreeBSD.org References: <20021211090406.13023.qmail@cobweb.example.org> <20021211123444.GI3860@straylight.oblivion.bg> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vkEkAx9hr54EJ73W" Content-Disposition: inline In-Reply-To: <20021211123444.GI3860@straylight.oblivion.bg> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --vkEkAx9hr54EJ73W Content-Type: text/plain; charset=windows-1251 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Dec 11, 2002 at 02:34:44PM +0200, Peter Pentchev wrote: > On Wed, Dec 11, 2002 at 10:04:06AM +0100, Marco Molteni wrote: [snip] > > Quoting from http://lufs.sourceforge.net/lufs/intro.html: > >=20 > > LUFS is a hybrid userspace filesystem framework supporting an indef= inite > > number of filesystems transparently for any application. It consist= s of > > a kernel module and an userspace daemon. Basically it delegates mos= t of > > the VFS calls to a specialized daemon which handles them. > >=20 > > Now the question: if I wanted to do something similar for FreeBSD, how > > would I do it? Any high-level hints? >=20 > Take a look at mount_portal(8). Which reminds me.. I really should dig up and polish my mount_portal 'exec' fstype patches.. but this is a fight for another day :( G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 No language can express every thought unambiguously, least of all this one. --vkEkAx9hr54EJ73W Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE99zH67Ri2jRYZRVMRAleZAJ0dlj/U7c3DyUJZ4GE1zOlXOxiUtgCgik53 Wnp9ku8ZqBweS01U3lxu+UU= =T1it -----END PGP SIGNATURE----- --vkEkAx9hr54EJ73W-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Wed Dec 11 5: 1: 7 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CF3537B404 for ; Wed, 11 Dec 2002 05:01:06 -0800 (PST) Received: from hotmail.com (f188.law10.hotmail.com [64.4.15.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C50143ED1 for ; Wed, 11 Dec 2002 05:01:06 -0800 (PST) (envelope-from delphij@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 11 Dec 2002 04:56:50 -0800 Received: from 218.246.96.6 by lw10fd.law10.hotmail.msn.com with HTTP; Wed, 11 Dec 2002 12:56:50 GMT X-Originating-IP: [218.246.96.6] From: "öÎ Àî" To: freebsd-hackers@freebsd.org Subject: How can I post a pr when my IP can't be reverse-resolved? Date: Wed, 11 Dec 2002 20:56:50 +0800 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 11 Dec 2002 12:56:50.0620 (UTC) FILETIME=[C596AFC0:01C2A114] Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I'm working in a small educational website(Simplified Chinese), Frontfree Technology Network ( www.frontfree.net ). Because the IP address is rent by my University from an ISP, and for unknown reasons we can't have the permission to reverse-resolve our IP address, it seemed impossible to send mail to FreeBSD.org, except for the maillist subscribing and unsubscribing. On the other hand, I usually want to submit some patch along with PRs to FreeBSD-gnats-submit@. I knew that I can paste the information to some other mail providers like Microsoft Hotmail, but it's a bit bother. Is it possible to change the policy of gnats@ in order to get mails from IPs which couldn't reverse-resolve, or I'll have to use Hotmail again and again? Thanks! Xin Li, Frontfree Technology Network, Beijing University of Technology _________________________________________________________________ Protect your PC - get McAfee.com VirusScan Online http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message From owner-freebsd-hackers Wed Dec 11 6:11: 9 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E7AA37B401 for ; Wed, 11 Dec 2002 06:10:59 -0800 (PST) Received: from disk.fnug.net (213.237.71.107.adsl.amb.worldonline.dk [213.237.71.107]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2AD743EC5 for ; Wed, 11 Dec 2002 06:10:52 -0800 (PST) (envelope-from paul@fnug.net) Received: from fnug.net (unknown [192.168.1.4]) by disk.fnug.net (Postfix) with ESMTP id 9F2424494 for ; Wed, 11 Dec 2002 15:10:45 +0059 (CET) Message-ID: <3DF7470A.2060904@fnug.net> Date: Wed, 11 Dec 2002 15:09:14 +0100 From: "Paul A. Mayer" User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.1) Gecko/20020823 Netscape/7.0 X-Accept-Language: en-us, en MIME-Version: 1.0 To: hackers@freebsd.org Subject: Crash with 5.0-RC1 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Greetings, I understand that this is the place to send debugging dumps from kernel crashes. If I'm misinformed, please advise. The original problem is described here and other thread contributor indicates a similar problem on similar hardware: http://marc.theaimsgroup.com/?l=freebsd-current&m=103954227212045&w=2 There is another person with an acpi crash problem here: http://marc.theaimsgroup.com/?l=freebsd-current&m=103955920101157&w=2 The gdb output from "where" is below. Please let me know what I can do to help. The configuration ran without a hitch under DP2. /Paul -bash-2.05b$ gdb -k kernel.debug.0 vmcore.1 GNU gdb 5.2.1 (FreeBSD) Copyright 2002 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-undermydesk-freebsd"... panic: from debugger panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0x42 fault code = supervisor read, page not present instruction pointer = 0x8:0xc042c517 stack pointer = 0x10:0xdf0caa04 frame pointer = 0x10:0xdf0caa1c code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 6 (acpi_task1) panic: from debugger Fatal trap 3: breakpoint instruction fault while in kernel mode instruction pointer = 0x8:0xc045c4f4 stack pointer = 0x10:0xdf0ca784 frame pointer = 0x10:0xdf0ca790 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = IOPL = 0 current process = 6 (acpi_task1) panic: from debugger Uptime: 31s Dumping 1023 MB ata0: resetting devices .. done 16 32 48 64 80 96 112 128 144 160 176 192 208 224 240 256 272 288 304 320 336 352 368 384 400 416 432 448 464 480 496 512 528 544 560 576 592 608 624 640 656 672 688 704 720 736 752 768 784 800 816 832 848 864 880 896 912 928 944 960 976 992 1008Copyright (c) 1992-2002 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-RC1 #0: Sat Dec 7 22:16:29 GMT 2002 root@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC Preloaded elf kernel "/boot/kernel/kernel" at 0xc06b5000. Preloaded elf module "/boot/kernel/acpi.ko" at 0xc06b50a8. Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 1200049432 Hz CPU: Pentium 4 (1200.05-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf27 Stepping = 7 Features=0xffffffffbfebf9ff> real memory = 1073713152 (1023 MB) avail memory = 1036169216 (988 MB) Initializing GEOMetry subsystem Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard ACPI-0625: *** Info: GPE Block0 defined as GPE0 to GPE15 ACPI-0625: *** Info: GPE Block1 defined as GPE16 to GPE31 Using $PIR table, 6 entries at 0xc00f13b0 acpi0: power button is handled as a fixed feature programming model. Timecounter "ACPI-fast" frequency 3579545 Hz acpi_timer0: <24-bit timer at 3.579545MHz> port 0xe408-0xe40b on acpi0 acpi_cpu0: on acpi0 acpi_tz0: on acpi0 acpi_button0: on acpi0 acpi_acad0: on acpi0 acpi_cmbat0: on acpi0 acpi_lid0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 agp0: mem 0xe0000000-0xefffffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) uhci0: port 0xb800-0xb81f irq 5 at device 29.0 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0xb400-0xb41f irq 9 at device 29.1 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered pcib2: at device 30.0 on pci0 pci2: on pcib2 rl0: port 0xa800-0xa8ff mem 0xd6800000-0xd68000ff irq 9 at device 5.0 on pci2 rl0: Realtek 8139B detected. Warning, this may be unstable in autoselect mode rl0: Ethernet address: 00:e0:18:bc:f6:85 miibus0: on rl0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto cbb0: irq 5 at device 7.0 on pci2 cardbus0: on cbb0 pccard0: <16-bit PCCard bus> on cbb0 cbb1: irq 11 at device 7.1 on pci2 cardbus1: on cbb1 pccard1: <16-bit PCCard bus> on cbb1 pci2: at device 7.2 (no driver attached) isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x8400-0x840f,0x8800-0x8803,0x9000-0x9007,0x9400-0x9403,0x9800-0x9807 mem 0xd5800000-0xd58003ff irq 9 at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at device 31.5 (no driver attached) pci0: at device 31.6 (no driver attached) fdc0: port 0x3f7,0x3f2-0x3f5 irq 6 drq 2 on acpi0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ppc0 port 0x778-0x77b,0x378-0x37f irq 7 drq 3 on acpi0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 sio0 port 0x3f8-0x3ff irq 4 on acpi0 sio0: type 16550A atkbdc0: port 0x64,0x60 irq 1 on acpi0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 acpi_ec0: port 0x66,0x62 on acpi0 orm0: