NIC MAC problem

2010-04-10 Thread Stanislav
On "fresh" freebsd 8.0 one of my nics's mac addres is all zeroes. I can set it to the real manualy, but what may cause this. Is it hardware issue? It is ok on slackware linux. ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailma

Hello!

2010-04-28 Thread Stanislav
Hello! I am accepted for the google summer of code. I just wanted to introduce myself to the community. I will be working on "BSNMP enhancement: A new module". I will be very thankful to anyone who have ideas to share. I am still newbie and have never coded for project such FreeBSD, but i hope

Re: libkvm: consumers of kvm_getprocs for non-live kernels?

2010-11-11 Thread Stanislav Sedov
on coredumps and on the live system. We still need to commit the libprocstat itself, though. -- Stanislav Sedov ST4096-RIPE ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "freebsd-hackers-unsubscr...@freebsd.org"

Re: libkvm: consumers of kvm_getprocs for non-live kernels?

2010-11-12 Thread Stanislav Sedov
On Fri, 12 Nov 2010 14:14:47 +0200 Andriy Gapon mentioned: > Just to let you know that I am eagerly awaiting for that to happen. > Perhaps even could help with something if you'd need that. > Review can certainly help.:-) Can I send you the patch? Thanks! -- Stanislav Sed

Re: MIPS toolchain

2011-09-08 Thread Stanislav Sedov
uilding uboot or other bare-metal stuff. There're also packages for this. -- Stanislav Sedov ST4096-RIPE () ascii ribbon campaign - against html e-mail /\ www.asciiribbon.org - against proprietary attachments pgpAZTDGsBtJJ.pgp Description: PGP signature

Re: Capsicum project: Ideas needed

2011-09-08 Thread Stanislav Sedov
imdal Kerberos implementation as it performs a lot of non-trivial ASN.1 and GSSAPI decapsulation/encapsulation when processing packets and we saw a lot of vulenrabilities in the past in these areas. Unfortunately, Heimdal will be probably to large to break into compartments. -- Stanislav S

Re: gcc 4.2 miscompilation with -O2 -fno-omit-frame-pointer on amd64

2011-12-02 Thread Stanislav Sedov
which was fixed only in a GPLv3 version of it. That's why we have -fno-strict-aliasing in default CFALGS. So you might try to build using -fno-strict-aliasing. -- Stanislav Sedov ST4096-RIPE () ascii ribbon campaign - against html e-mail /\ www.asciiribbon.org - against proprietary attachments pgpuO922JsvHw.pgp Description: PGP signature

Re: sockstat.c

2012-06-20 Thread Stanislav Zaharov
Sorry, patch now as an attachment On Thu, Jun 21, 2012 at 3:55 AM, Eitan Adler wrote: > On 20 June 2012 16:48, Stanislav Zaharov wrote: > > Hi all! > > I changed the sockstat.c, function display() - added a resize of fields, > > depending on the length of the data. Can

Re: libprocstat(3): retrieve process command line args and environment

2013-01-22 Thread Stanislav Sedov
On Jan 22, 2013, at 1:48 PM, John Baldwin wrote: > > Well, you could make procstat open a kvm handle in both cases (open a "live" > handle in the procstat_open_sysctl() case). It just seems rather silly to be > duplicating code in the two interfaces. More a question for Robert: does > libpr

Re: libprocstat(3): retrieve process command line args and environment

2013-01-25 Thread Stanislav Sedov
es on a core file (of a process, not a kernel crash dump), > so it could list the threads from a core dump, and possibly file descriptor > info (if PR kern/173723 is implemented). > That's actually a good idea. I was thinking about the

Re: Fast SCSI RAID controller

2007-02-03 Thread Stanislav Sedov
On Fri, 2 Feb 2007 14:22:44 -0800 Josef Grosch <[EMAIL PROTECTED]> mentioned: > Can anyone suggest a fast SCSI RAID controller for FreeBSD 6.2 ? Our vendor > is having trouble with the latest Adaptec > LSI Logic produce very good SCSI controllers that work just fine with amr (4)

Deny system call using ptrace

2007-03-31 Thread Stanislav Ochotnicky
Hi, I'm trying to create sort of user-space access control system based on allowing/denying syscalls. I was able (after a few problems) to start ptracing program, stop at every enter/exit from system call, inspect arguments etc. What I'm however trying to do, is denying access to syscalls. In linu

Re: Deny system call using ptrace

2007-04-02 Thread Stanislav Ochotnicky
Thijs Eilander wrote: > If you are interested in doing some development to make it work, I am > porting systrace to FreeBSD but due to time restrictions development is > slow. More information about systrace can be found on > http://www.citi.umich.edu/u/provos/systrace/ and www.systrace.org Yes I

Re: Deny system call using ptrace

2007-04-02 Thread Stanislav Ochotnicky
My mistake. I noticed later that ptrace is actually called just before system call, however system call code and arguments are already read in kernel, and are not re-read after ptrace finished. It simply does not count with that possiblity. -- cut here --- if (error == 0) { td->td_retv

Re: pmcstat and squid

2007-04-13 Thread Stanislav Sedov
Hi! Have the problem been solved somehow? I'm experiencing the same problems on 6-STABLE with squid. Apache seems to be OK. -- Stanislav Sedov ST4096-RIPE pgprJiUUGvNZm.pgp Description: PGP signature

Re: New FreeBSD package system (a.k.a. Daemon Package System (dps))

2007-05-12 Thread Stanislav Sedov
better (easier to parse and read and same benefits as XML). Also we might consider YAML, thought I like this idea much fewer. -- Stanislav Sedov ST4096-RIPE pgpZu3qUtFFBh.pgp Description: PGP signature

Re: New FreeBSD package system (a.k.a. Daemon Package System (dps))

2007-05-12 Thread Stanislav Sedov
eeBSD's ideology is to be as simple as possible but powerful. -- Stanislav Sedov ST4096-RIPE pgpVaa42FhVhq.pgp Description: PGP signature

Re: New FreeBSD package system (a.k.a. Daemon Package System (dps))

2007-05-13 Thread Stanislav Sedov
On Sat, 12 May 2007 16:26:53 +0200 Ivan Voras <[EMAIL PROTECTED]> mentioned: > Stanislav Sedov wrote: > > > I agree, that there's a lot of ready tools for parsing xml, but why > > not use much simple language that can be parsed by sed or awk in few > > lin

Re: New FreeBSD package system (a.k.a. Daemon Package System (dps))

2007-05-13 Thread Stanislav Sedov
uch from SQLite solution at all), and will have transaction safety. Just IMO, anyway. Of course, a transaction safe database will be a better solution anyway, but please - not SQL, it's complex and we don't need it for a such simple task. Probably, we can add transactions to our bdb 1.85, it seems not very hard to me. -- Stanislav Sedov ST4096-RIPE pgp8E7XiibFji.pgp Description: PGP signature

Re: New FreeBSD package system (a.k.a. Daemon Package System (dps))

2007-05-13 Thread Stanislav Sedov
ormance-wise) storage would probably need to use more > than one store, at least to index data by different keys. > I agree with everything, but, as was mentioned before, having such a complex product in base will involve a lot of pain. Furthermore, SQLite have a lot of features we don't need for

setegid bug

2007-06-07 Thread Stanislav Sedov
something? Thanks a lot! -- Stanislav Sedov ST4096-RIPE pgp7eSCNytZaQ.pgp Description: PGP signature

Re: where to start on kernel modules and NSS?

2007-07-03 Thread Stanislav Sedov
US.ISO8859-1/books/arch-handbook/index.html > http://www.freebsd.org/doc/en_US.ISO8859-1/articles/geom-class/kernelprog.html > > Also, this document can serve a very good introduction: http://caia.swin.edu.au/reports/070622A/CAIA-TR-070622A.pdf -- Stanislav Sedov ST4096-RIPE pgp3fuiROpdZ8.pgp Description: PGP signature

Re: FreeBSD 6.2-STABLE && apache 2.2.4 = bad performance. Help!

2007-07-20 Thread Stanislav Sedov
o run truss(1) on any of apache processes and look what it's doing. -- Stanislav Sedov ST4096-RIPE pgpRVMyKn5Dg3.pgp Description: PGP signature

Re: Examples of sysctl/sysctlbyname/sysctlnametomib?

2008-01-15 Thread Stanislav Sedov
;, (mv - 2732.0) / 10); When you retrive value using sysctlbyname, it's raw number, and it'll differ from what sysctl displays. -- Stanislav Sedov ST4096-RIPE ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: find -lname and -ilname implemented

2008-02-24 Thread Stanislav Sedov
, > +// -xtype > }; > > /* Warner, I fully understand your intention to make FreeBSD more compatible with GNU, but FreeBSD Project historically had much more important target - to make a clean designed and not bloated system. I'll be happy to see new useful options adde

Re: VM design doc?

2008-02-24 Thread Stanislav Sedov
x27;s current VM? > I'm not an expert in this field, but AFAIK the main design principles of the VM subsystem remain. For further study I afraid you need to go for the source code (sys/vm and sys/kern). Also, McKusick book on FreeBSD, might be helpful too. -- Stanislav Sedov ST4096-RIPE

Re: find -lname and -ilname implemented

2008-02-27 Thread Stanislav Sedov
od peace of code, and now it looks inconsistent. > > Because it makes it more compatible with existing de-facto standards. > It costs us very little to do so. > It costs extra complexity. A very important thing, though... -- Stanislav Sedov ST4096-RIPE ___

Re: OpenBSD sdiff Question

2008-03-15 Thread Stanislav Sedov
gt; Do we really need to display program version on -v switch? BSD has no tradition to keep separate program version, it's just a part of an entire OS. I believe we might just abandone this switch. -- Stanislav Sedov ST4096-RIPE ___ freebsd-hackers

Re: My GSoC Intro...

2008-04-25 Thread Stanislav Sedov
What I expect the most > is learning as much as possible about the unix kernel and > getting to know with as many fbsd developers as possible. > And - to succeed, of course.. > Congrats! And good luck in your work! -- Stanislav Sedov ST4096-RIPE _

Re: Help with copytree code

2008-05-19 Thread Stanislav Sedov
gt; http://www.alaskaparadise.com/freebsd/copytree_code > I think the following will do the trick, though I have not tested it: http://mbsd.msk.ru/dist/copytree.diff -- Stanislav Sedov ST4096-RIPE ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

libjail issues.

2010-07-15 Thread Stanislav Uzunchev
Hi, all. I have found something very strange to me... It is a problem with static allocating size of buffer where jail param is going to be coppied, using jail_getv function from the libjails. Well for example: buff[size]; jail_getv(0, "name", "1", "host.hostname", buff, NULL); the result for si

Re: envy24 driver broken

2010-07-22 Thread Stanislav Sedov
he mixer. Do you know where exactly these messages come from? -- Stanislav Sedov ST4096-RIPE ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "freebsd-hackers-unsubscr...@freebsd.org"

Re: envy24 driver broken

2010-07-23 Thread Stanislav Sedov
On Fri, 23 Jul 2010 18:51:10 + xorquew...@googlemail.com mentioned: > On 2010-07-22 16:32:56, Stanislav Sedov wrote: > > Hi, xw! > > > > I have Audiophile 2496, and it works great for me including the mixer. > > Do you know where exactly these messages come from?

Re: AMD Geode LX crypto accelerator (glxsb)

2008-06-15 Thread Stanislav Sedov
e. > Small note about the manpage: I think we don't need the netbsd porting information in AUTHORS section, also you missed a dot in the end of last sentence in HISTORY section. -- Stanislav Sedov ST4096-RIPE pgpJ6rr8tinjB.pgp Description: PGP signature

Re: Help with copytree code

2008-07-12 Thread Stanislav Sedov
possible inclusion > in bsd.port.mk along with some new features of my own. Hopefully, > this will fix a long standing problem with copytree_*. > Have you filled the PR so we could review/comment? -- Stanislav Sedov ST4096-RIPE ___ freebsd-hac

Re: How can I add new binaries to the mfsroot image?

2008-11-17 Thread Stanislav Sedov
eople.freebsd.org/~mm/mfsbsd/ These works for me fine for building custom installation CDs. -- Stanislav Sedov ST4096-RIPE pgpua59y8DHtG.pgp Description: PGP signature

Re: lzma compression/decompression in bsdtar/libarchive?

2008-11-26 Thread Stanislav Sedov
hat as bz2 versions were available. - -- Stanislav Sedov ST4096-RIPE -BEGIN PGP SIGNATURE- iEYEARECAAYFAkktAxcACgkQK/VZk+smlYF8DQCfVraD3lSYoZNsPVeYf0tWj9Nr q5UAnjVWWhkSakJWq8K634Pap9hdYDRi =9XOq -END PGP SIGNATURE- ___ freebsd-hac

Re: KLD: program.ko: depends of kernel - no avaiable

2009-01-20 Thread Stanislav Sedov
did not give any useful information. > And this is one really belongs to questions@ and not to hackers@ > The other possible reason that you used the symbol undefined in kernel (e.g. called unexistent function). - -- Stanislav Sedov ST4096-RIPE -BEGIN PGP SIGNATURE-

Re: building a gcc crosscompiler

2009-04-20 Thread Stanislav Sedov
, or if I need to build > > the ports libgmp4, please let me know. > > I don't know if it's required, but devel/cross-gcc does depend on > math/libgmp4 . > Yeah, it wants it (at least on my system). I will check if it can be replaced with the system libmp. -- Stanis

Re: ipfw uid rules for lo0 interface

2009-05-16 Thread Stanislav Sedov
> That should work. I suspect you don't have anything running on 127.0.0.1:25, otherwise you should have been receiving a "permission denied" message. You can inspect what's binded on which ports/addresses by running `sockstat -4`. - -- Stanislav Sedov ST409

Re: C99: Suggestions for style(9)

2009-05-17 Thread Stanislav Sedov
the code. Strict style implies a lot of implicit knowledge, so you don't have to study a piece of code for a long time before you understand how it works in general. By relaxing style(9) we're in danger of loosing this benefit. - -- Stanislav Sedov ST4096-RIPE -BEGIN PGP SIGNATURE---

Re: C99: Suggestions for style(9)

2009-05-17 Thread Stanislav Sedov
the code, it may be the time to improve the tool or change it. Tools can be improved, people can't. By 'hunting for declarations' it usually meant that it is hard to find pieces of the code by looking into it, not that tools can't handle the task. - -- Stanislav

Re: C99: Suggestions for style(9)

2009-05-17 Thread Stanislav Sedov
e benefits observed by a > reader of the code. > I particulary like this change. Aliasing behavior is stritcly described in ISO C99 standard, so there's a good point to enforcing strict-aliasing clear code in our kernel. On the other hand the big work should be done on clearing the ex

Re: C99: Suggestions for style(9)

2009-05-17 Thread Stanislav Sedov
e piece of code debugged uses void returns. -- Stanislav Sedov ST4096-RIPE !DSPAM:4a0fec8e994291872371064! ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "freebsd-hackers-unsubscr...@freebsd.org"

Re: C99: Suggestions for style(9)

2009-05-17 Thread Stanislav Sedov
readability for humans, because it > simplifies the def-use-chains, and as a side effect sometimes leads to > better generated code. It is not sensible to check millions of lines of > code whether a variables are used in different contexts within a > function before this can add

Re: compiling system binutils as cross tools

2009-05-21 Thread Stanislav Sedov
gt; > I'd rather not compile the entire world if it can be avoided. > You can also try using devel/cross-binutils to build cross-tools for x86_64-freebsd. Random people reported they're working fine. - -- Stanislav Sedov ST4096-RIPE -BEGIN PGP SIGNATURE- iE

Re: Installation from USB pen

2009-05-21 Thread Stanislav Sedov
system image loads? Does it load kernel succesfully but cannot find root filesystem? - -- Stanislav Sedov ST4096-RIPE -BEGIN PGP SIGNATURE- iEYEARECAAYFAkoV2gEACgkQK/VZk+smlYHVqQCfb0lmeXbKdbk+Ktq1l2Dngz01 HEsAn1U5V1nnnyFs89Yvxo5xbjvIwzmY =gp18 -END PGP SIGNATURE- !DSPAM:4a15d9da994

Re: compiling system binutils as cross tools

2009-05-21 Thread Stanislav Sedov
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, 21 May 2009 17:44:42 +0100 xorquew...@googlemail.com mentioned: > On 2009-05-21 16:10:18, Stanislav Sedov wrote: > > You can also try using devel/cross-binutils to build cross-tools for > > x86_64-freebsd. Random people r

Re: distributed scm+freebsd svn?

2009-07-27 Thread Stanislav Sedov
done in other source control systems. I prefer the plain ssh access for this task by configuring a jail with repository access and creating users accounts with limited access and the special wrapper instead of login shell which allows execution of the limited set of commands. Today such kind of shell is already included into the distribution so there's no need to hack up your own version. -- Stanislav Sedov ST4096-RIPE pgp4Gu0KbYGcA.pgp Description: PGP signature

Re: How to profile the disk io performed through mmaps?

2009-07-29 Thread Stanislav Sedov
d for mmapped writes? Yes, it should be possible to monitor files written to via mmapped region with EVFILT_VNODE kevents. Please note, however, that changes to mmapped region may be propagated to the files not immediately depending on the region attributes. -- Stanislav Sedov ST4096-RIPE

Re: How to profile the disk io performed through mmaps?

2009-07-29 Thread Stanislav Sedov
On Wed, 29 Jul 2009 09:49:12 -0700 Yuri mentioned: > Stanislav Sedov wrote: > > Yes, it should be possible to monitor files written to via mmapped region > > with EVFILT_VNODE kevents. Please note, however, that changes to mmapped > > region may be propagated to the

Re: About FreeBSD syscall usage

2009-10-22 Thread Stanislav Sedov
favor of a 1:1 threading model when 7.0 was released” > > Does it mean the KSE syscall can be removed from FreeBSD 7.0? > libkse (M:N threading) was default threading library on FreeBSD versions prior to 7.0, and the default has changed to libthr (1:1 threading in FreeBSD

Re: Exiting Xorg panics Core Duo laptop

2006-05-09 Thread Stanislav Sedov
> Eric What graphic adapter you are using? Do you use DRI? What version of Xorg? Best regards, Stanislav Sedov. ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: packages problem

2006-05-09 Thread Stanislav Sedov
ges by setting up the 6.0-RELEASE instead of 6.1-RC1 in options menu of the sysinstall app. Best regards, Stanislav Sedov. ___ freebsd-hackers@fre

Re: no core file handler recognizes format

2006-05-12 Thread Stanislav Sedov
y suggestions befoer I downgrade to 5.4? > You should use kgdb rather the gdb. GDB doesn't recognizes kernel dumps format by default. -- - Stanislav Sedov MBSD labs,

Re: no core file handler recognizes format

2006-05-13 Thread Stanislav Sedov
may be useful to some extent too. -- ----- Stanislav Sedov MBSD labs, Inc. <[EMAIL PROTECTED]> If the facts don't fit t

Re: Simple question about mmap() system call

2006-06-23 Thread Stanislav Sedov
ors with the sample (2 bytes long) file, printf() > shows actual first byte of my file. But modification doesn't get written back > to the disk, file contents are unchanged after execution of my code. I'm sure > I'm overlooking something very bas

Re: mmap() vs. character special file

2006-06-23 Thread Stanislav Sedov
mmap requires device to return pointer to contigues memory range - drm, for example, returns pointer to physical memory of the graphical adapter. Implementing mmap for disk devices involves complicated VM intercations, since you cannot simply return pointer to "physical" memory. Actually,

Re: Any success with bacula and DVD

2006-07-27 Thread Stanislav Sedov
-ports@freebsd.org is better suited for this question. -- Stanislav Sedov MBSD labs, Inc. <[EMAIL PROTECTED]> Россия, Москва http://mbsd.msk.ru If the facts don't fit

make(1) is broken?

2006-08-10 Thread Stanislav Sedov
hanks! -- Stanislav Sedov MBSD labs, Inc. <[EMAIL PROTECTED]> Россия, Москва http://mbsd.msk.ru If the facts don't fit the theory, change the facts.

Re: make(1) is broken?

2006-08-10 Thread Stanislav Sedov
havior could be used rather safely for it's well documented in make(1). According to this manpage, it's not a side effect - .for loops always unrolled and variable substitutions occurs. Thanks for all answers! -- Stanislav Sedov MBSD labs, Inc. <[EMAIL PROTEC

exception handling in kernel code

2006-08-14 Thread Stanislav Sedov
inserting hooks into trap.c. So, the question is: how can one recover after exception in kernel code? AFAIK, linux build special exception table from various __ex_table sections to allow placing recover code into .fixup section. Does any such mechanism exists in freebsd? Thanks! -- Stani

Re: exception handling in kernel code

2006-08-14 Thread Stanislav Sedov
I've implemented driver to allow user-level code to read MSRs (Model specific registers) (like linux's /dev/cpu/msr). It's required for some programs like x86info. As long as not all MSRs documented and reading/writing unexistent MSR leads to GP fault, I need to recover in that c

Re: exception handling in kernel code

2006-08-14 Thread Stanislav Sedov
d to do something similar for accessing PCI config registers > that don't exist and cause a fault... > Do you know some examples to look at? The problem is that i can't make modifications in trap.c or anywhere else in src tree as such driver isn't likely to become a part of FreeBSD

Re: exception handling in kernel code

2006-08-16 Thread Stanislav Sedov
ation (success/failure) will be very apprecated. Thank to all for help. -- Stanislav Sedov MBSD labs, Inc. <[EMAIL PROTECTED]> Россия, Москва http://mbsd.msk.ru If the facts don't fit the th

Re: Path transformation

2006-08-19 Thread Stanislav Sedov
On Sat, 19 Aug 2006 13:27:49 +0100 "mal content" <[EMAIL PROTECTED]> mentioned: > Hello. > > Is there any code in the tree that does general path transformation > or 'optimisation'? > realpath(3) -- Stanislav Sedov MBSD labs, Inc.

Re: exception handling in kernel code

2006-08-23 Thread Stanislav Sedov
nt implementation works well providing MSR access to userland and it garantee no kernel faults at all. It reports MSR reading errors to userland too. Furthermore, porting to other BSD isn't a goal. -- Stanislav Sedov MBSD labs, Inc. <[EM

Re: Aqcuiring full path to running process from outside the kernel

2006-08-23 Thread Stanislav Sedov
to DATA sections, as proposed by Sergey, is much more correct. -- Stanislav Sedov MBSD labs, Inc. <[EMAIL PROTECTED]> Россия, Москва http://mbsd.msk.ru If the facts don't fit the t

Re: Wiring umass unit numbers

2006-09-01 Thread Stanislav Sedov
, you'll always have /dev/label/MYFLASH entry whenever you flash is plugged. Unfortunately, this technique can't be used with floppy, for glabel information is stored on the media itself, that is you need to label every floppy separately. Hope that helps. -- Stanislav Sed

Re: The nature of kernel of the FreeBSD

2006-09-09 Thread Stanislav Sedov
tilize hardware acceleration. Xrender might be slower, since it often falls back to software rendering (that's why recent gtk versions are so slow). Also, Cocoa might operate faster due to good 3d/2d drives availabilty. At least, ATI opensource dri driver is known to perform 2-3 times slower than ev

Re: FreeBSD Port: sysutils/fuser

2006-09-11 Thread Stanislav Sedov
On Mon, 11 Sep 2006 19:09:23 +0100 Roy Marples <[EMAIL PROTECTED]> mentioned: > On Monday 11 September 2006 09:58, Stanislav Sedov wrote: > > On Sun, 10 Sep 2006 21:48:26 +0100 > > > > Roy Marples <[EMAIL PROTECTED]> mentioned: > > > Hi > > > &

Re: FreeBSD Port: sysutils/fuser

2006-09-11 Thread Stanislav Sedov
On Mon, 11 Sep 2006 23:52:11 +0400 Stanislav Sedov <[EMAIL PROTECTED]> mentioned: > > But they wants the value 0 to be returned in case of no errors, and > since there are no errors in case of no files opened on mountpoint, > returning non-zero could break some apps th

Re: running code on all CPUs

2006-10-06 Thread Stanislav Sedov
rmance standpoint. Suggestions? > > > > Also, are there any locking pitfalls or other issues I should be aware of > > when writing code to run in either idle_proc() or mi_switch()? > > > > -Jon > > AFAIK, you can use scheduler API, the sched_bind() moves current thre

Re: running code on all CPUs

2006-10-06 Thread Stanislav Sedov
On Sat, 7 Oct 2006 07:38:12 +0800 David Xu <[EMAIL PROTECTED]> mentioned: > On Friday 06 October 2006 21:45, Stanislav Sedov wrote: > > > AFAIK, you can use scheduler API, the sched_bind() moves current thread > > > to a specific CPU, hope this helps. > > > &

tracing AND intercepting syscalls?

2006-12-02 Thread Stanislav Ochotnicky
be I just couldn't find it. If kernel module/change is needed I would appreciate push in right direction. Any help would be appreciated. Thanks in advance Stanislav Ochotnicky -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (GNU/Linux) iD8DBQFFcaqGul7h5FTXf/MRCDDDAJ4jkBkfkb09PJhM8

Re: tracing AND intercepting syscalls?

2006-12-02 Thread Stanislav Ochotnicky
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Kostik Belousov wrote: > On Sat, Dec 02, 2006 at 05:32:06PM +0100, Stanislav Ochotnicky wrote: >> -BEGIN PGP SIGNED MESSAGE- >> Hash: SHA256 >> >> Hi >> >> I'm doing some research concerning trac

Re: tracing AND intercepting syscalls?

2006-12-03 Thread Stanislav Ochotnicky
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Robert Watson wrote: > As discussed elsewhere in the thread, ptrace() has a syscall trapping > facility, although I've not used it so can't speak to how well it works. As I mentioned earlier, I didn't find any info about ptrace() syscall trapping fa

Re: Local mirror

2007-01-29 Thread Stanislav Sedov
? > You can specify a server to get packages from using PKG_SITES directive of portupgrade. Note, that you should mirror packages for this as well -- Stanislav Sedov ST4096-RIPE pgp8hslLTrB1p.pgp Description: PGP signature

Re: rc sequencing issue / mountcritremote

2005-09-03 Thread Stanislav Sedov
On Sat, Sep 03, 2005 at 12:20:41PM -0400, Tuc at T-B-O-H wrote: > The problem I'm having is that when it attempts to remotely > mount the NFS filesystem I need, there are no support programs > running, namely (I THINK) : > > /etc/rc.d/rpcbind > /etc/rc.d/nfsclient > /etc/rc.d/mountd > /etc/r

Re: FreeBSD 6.0 Beta #3 - IDE Problems? (Intel / ICH6 based laptop)

2005-09-06 Thread Stanislav Sedov
On Mon, Sep 05, 2005 at 01:41:00PM +0100, Karl Pielorz wrote: > > Hi All, > > I recently tried to boot the FreeBSD 6.0 Beta #3 on my laptop, and ran into > a problem. > > The hard drive controller probes as: > > " > atapci0: port > 0xbfa0-0xbfaf,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 irq 17 at

Re: FreeBSD 6.0 Beta #3 - IDE Problems? (Intel / ICH6 based laptop)

2005-09-06 Thread Stanislav Sedov
On Mon, Sep 05, 2005 at 04:50:21PM +0100, Karl Pielorz wrote: > > > --On 05 September 2005 19:31 +0400 Stanislav Sedov <[EMAIL PROTECTED]> wrote: > > >Try to disable ACPI - it can helps. There may be some problems with ACPI > >on your laptop - BIOS update so

Re: dev_lock() question

2005-09-29 Thread Stanislav Sedov
On Thu, Sep 29, 2005 at 06:55:38PM +0200, Divacky Roman wrote: > Hi, > > dev_lock() looks this way: > > void > dev_lock(void) > { > if (!mtx_initialized(&devmtx)) > mtx_init(&devmtx, "cdev", NULL, MTX_DEF); > mtx_lock(&devmtx); > } > > I wonder why is the mtx_initialize

Re: journaling fs and large mailbox format

2005-09-30 Thread Stanislav Sedov
On Thu, Sep 29, 2005 at 04:11:29AM +0300, Alin-Adrian Anton wrote: > Dear Hackers, > > First of all thank you for your time and attention. > > I am in the position to implement a large-scale mail server and I > will never go for anything else but FreeBSD (fixation?). > >

anti-briteforce PAM module

2005-10-16 Thread Stanislav Sedov
/suggestions to me. It'll be very helpful for me. Home page of the module: http://mbsd.msk.ru/pam_af.html. Thanks in advance, Stanislav Sedov. ___

Re: Grub and FreeBSD 4.9

2004-05-19 Thread Stanislav Grozev
On Wed, May 19, 2004 at 12:47:34PM +0100, Steven Hartland wrote: > Oh quite possibly I have the grub install on a linux partition. > just creating a small boot partition of a format that grub can load > should be good enough though. If someone else can find out > how to get grub to load read an ffs

How to make .so to find symbol from other .so?

2003-02-03 Thread Stanislav Malyshev
know if it was loaded or not - thus I can not use dlopen with path name to go directly to Z.so. Any suggestions? -- Stanislav Malyshev, Zend Products Engineer [EMAIL PROTECTED] http://www.zend.com/ +972-3-6139665 ext.109 To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsu

Re: support for Tyan Thunder i7500 mobo?

2003-02-17 Thread Stanislav Golovin
board DE> SCSI controller is properly recognized. Works fine, both 82545GC and SCSI. -- Best regards, Stanislav To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

10646

1999-05-11 Thread G. Adam Stanislav
Hi, all, Just to keep you posted on the progress of the wctype routines: I put a program called 10646 on the web page. It will read the Unicode data file and produce a file which then can be fed to mklocale(1) to produce a Unicode locale. If renamed (or linked as) ees, it will produce a much sma

c9x (new ANSI C)

1999-05-19 Thread G. Adam Stanislav
Hello All, I have recently exchanged some email with a person involved in the upcoming c9x - new version of ANSI C, which is, among other things, supposed to bring some changes in localization functions. Since I am working on the wctype.h functions, I asked him where I could learn more about the

Re: c9x (new ANSI C)

1999-05-19 Thread G. Adam Stanislav
On Wed, May 19, 1999 at 06:16:04PM -0400, Chuck Robey wrote: > I tell you, I must say that the new spec, from what I've heard (and some > limited reading of magazine articles), brings in a lot of C++ to C, and > really is a gift to compiler vendors. No changes *I'd* want. Ye, gods! You're scaring

Re: c9x (new ANSI C)

1999-05-20 Thread G. Adam Stanislav
On Thu, May 20, 1999 at 01:41:37PM -0600, Warner Losh wrote: > In message <19990519180151.a...@whizkidtech.net> "G. Adam Stanislav" writes: > : And the MS book was outright lying (gee, surprise): It claimed that > : one of the biggest advantages of C++ over C is tha

Re: 3.2-stable, panic #12

1999-06-04 Thread G. Adam Stanislav
On Fri, Jun 04, 1999 at 09:08:03AM -0600, Nate Williams wrote: > I know of *NO* programmer who does not delight in completely ripping out > and replacing existing code with code that he has written from scratch. H... I am a programmer, and I do not take delight in doing that. Not that I haven'

Re: how to start to be a hacker?

1999-07-02 Thread G. Adam Stanislav
On Thu, Jul 01, 1999 at 08:17:59AM -0700, haodong...@netease.com wrote: > I know the basic admin knowledge of UNIX,perl,cgi,c > how to become a hacker? You either are a hacker, or you are not. It is not something someone else can teach you. Do you have the innate curiosity to take things apart ju

Re: how to start to be a hacker?

1999-07-03 Thread G. Adam Stanislav
On Sat, Jul 03, 1999 at 01:18:52AM -0600, Wes Peters wrote: > > > You either are a hacker, or you are not. It is not something someone else > > > can teach you. > > > > This deserves a FAQ entry. What an awesome response. > > But it's certainly NOT something that you just are, either. You have t

Re: how to start to be a hacker?

1999-07-03 Thread G. Adam Stanislav
On Sat, Jul 03, 1999 at 11:45:41AM -0600, Wes Peters wrote: > And, in some cases, disasters averted. I think all of us here have seen > a few graphic examples lately of what happens when the mentoring process > doesn't work. Sadly, mentoring can occasionaly hurt the mentor, too. I used to work f

Re: how to start to be a hacker?

1999-07-03 Thread G. Adam Stanislav
On Sat, Jul 03, 1999 at 06:11:08PM -0600, Wes Peters wrote: > Trust me, greenie, those of us who a FAR from 16 wish we weren't. ;^) What, and miss the sixties??? Get back to your handbasket! :-) Adam To Unsubscribe: send mail to majord...@freebsd.org with "unsubscribe freebsd-hackers" in the b

Bizarre shutdown behavior

2001-05-26 Thread G. Adam Stanislav
Yesterday I upgraded from FreeBSD 3.1 to 4.3-20010525-STABLE. I am very impressed by what I see, and would like to express both my thanks and my congratulations to all developers on a job well done. I do experience one bizarre thing, and would appreciate any input on what to change: Whenever I us

Re: Bizarre shutdown behavior

2001-05-26 Thread G. Adam Stanislav
On Sat, May 26, 2001 at 07:25:45PM -0500, G. Adam Stanislav wrote: >What is strange is that after the words "Working in auto mode" it dials >up to my ISP, then hangs up, then prints the rest. I found what was causing it. I had a "ppp" command in /usr/local/etc/rc.d/sta

Re: Bizarre shutdown behavior

2001-05-26 Thread G. Adam Stanislav
At 22:14 26-05-2001 -0500, Dan Nelson wrote: >Have you created any custom /usr/local/etc/rc.d/ scripts? 4.0 calls >these on shutdown with the "stop" argument, so you can cleanly stop >things like databases. If your scripts don't check for this, they will >try to start up again. Thanks, Dan. Tha

Re: Debuggers for FreeBSD

2001-05-29 Thread G. Adam Stanislav
At 13:21 29-05-2001 +0400, Nickolay A. Kritsky wrote: >Hi all. >I am using assembly language to write some useful programs for my FreeBSD 3.3_release and i need some debugger. I am not happy with >gdb. Can you tell me if there is some Soft-ICE type debuggers under this OS ? Try ald (assembly

  1   2   >