Search Results

Search: Posts Made By: Naanu
Forum: Solaris 11-05-2007
9,702
Posted By Naanu
hey s93366, i am facing a similar issue but...
hey s93366,

i am facing a similar issue but i get asked all the questions from timezone to domain stuff..etc..
I initially thought it might be because it could not find the sysidcfg file on the...
Forum: Solaris 10-16-2007
2,174
Posted By Naanu
pfild missing!!
I wanted to enable IP filtering on a Solaris10 U4 machine. For some reason I dont find /usr/sbin/pfild. This machine was running a minimal version of S10U4 and I got to know that for pfild I need to...
Forum: Solaris 10-11-2007
2,662
Posted By Naanu
a) Looks like this is abug as filed below ...
a) Looks like this is abug as filed below
Solaris 10 06/07 (U4) requires nfs4_domain sysidcfg keyword |
bug 6541730


b) I am still loooking for some insight :(
Forum: Solaris 10-11-2007
2,662
Posted By Naanu
Jumpstart with image problem
Hello,

I did this perfectly fine with S10Update3. But with S10Update4 something is strange
a) For some reason when I am moving to Update 4, it keeps prompting for name service etc etc. But this...
Forum: Solaris 04-06-2007
4,263
Posted By Naanu
Reborg The app eats 1G max, not more than...
Reborg

The app eats 1G max, not more than that.
And no forking or execing in there. :(
With things running fine, I observed the RSS for my app and the max it goes is 1gig.
Forum: Solaris 04-06-2007
4,263
Posted By Naanu
What other objects? as i mentioned before the...
What other objects? as i mentioned before the only app on the sytem is ours. Presuming an extremely high requirement of main memory by the OS, to be 700MB and adding another 300MB for leeway. What...
Forum: Solaris 04-06-2007
4,263
Posted By Naanu
perderabo, Well, come to think of it, there is...
perderabo,
Well, come to think of it, there is a way to ensure everything is resident and nothing is paged by using mlockall() in your app. But, seems like this is not working without any swap file!!
Forum: Solaris 04-05-2007
4,263
Posted By Naanu
swap file not present
Hello all,

We are running a 2 gig Solaris10 system. The only application that's running on the system is ours which allocates 850MB through malloc at one shot.

For some reason this malloc keeps...
Forum: Solaris 03-26-2007
6,224
Posted By Naanu
Reborg, Ur guess is right. its t1k. I had...
Reborg,

Ur guess is right. its t1k.
I had tried it earlier and made it 4 each, but did not help. The driver seemed to be stuck on one VCPU and when the load increased we started losing packets.
...
Forum: Solaris 03-26-2007
6,224
Posted By Naanu
reborg.. its plain UDp data getting dumped on...
reborg..
its plain UDp data getting dumped on to the interface. As soon as the number of open sockets/bindings(either multicast or unicast), the single cpu usage which the bge driver is stuck to...
Forum: Programming 03-26-2007
10,084
Posted By Naanu
perderabo..thank you. will try to implement this.
perderabo..thank you. will try to implement this.
Forum: Programming 03-23-2007
10,084
Posted By Naanu
perderabo...sorry my bad its 255 not 510. and...
perderabo...sorry my bad its 255 not 510.
and it scales up fine for the last ocet if we we keep incrementing from 1 to 255, but not after that.
Forum: Solaris 03-23-2007
6,224
Posted By Naanu
network driver cpu usage
Hello all,

Needed a suggestion from you all, if you know anything about this stuff.
We have a high network traffic application. Close to around 700Meg /sec on one NIC.

When the traffic is...
Forum: Solaris 03-23-2007
15,556
Posted By Naanu
thanks pressy and reborg.. will try to adopt...
thanks pressy and reborg..
will try to adopt this one of these days.
Forum: Programming 03-22-2007
10,084
Posted By Naanu
jim...nope doesnt work... works for the last...
jim...nope doesnt work...
works for the last octet though ...and is not linear after that.
thanks anyway. wills stick with my old method.
Forum: Solaris 03-22-2007
15,556
Posted By Naanu
LOL.. u caught me there.. any good online...
LOL..
u caught me there..
any good online material for me to know more about these zone thingies?
Forum: Solaris 03-21-2007
15,556
Posted By Naanu
pressy.. is there a way I could inhinit a few...
pressy..
is there a way I could inhinit a few of my processes to go on to a particular processor_set_id?
I mean I have a box with 24virtual cpus and have created 2 processor sets.
One with 3 and...
Forum: Programming 03-21-2007
10,084
Posted By Naanu
thanks jim... there is another way...the...
thanks jim...
there is another way...the country road way :)

char inputIpstring[16];
int oct1,oct2,oct3,oct4,
sscanf(inputIpString,"%d.%d.%d.%d",&oct1,&oct2,&oct3,&oct4)

increment anyof the...
32,529
Posted By Naanu
zen, i doubt if you could use select() for...
zen,

i doubt if you could use select() for the the different message queues, while you can do that for sockets. If you have multiple sockets and need to do event based handling depending on which...
Forum: Programming 03-21-2007
10,084
Posted By Naanu
ip address octet increments
Hi all,

Situation is as below.
I would get an IP address and port from eithe r a file or command line. It probably would be as char * or string. So was wondering how I could accept this and...
Forum: Solaris 03-21-2007
15,556
Posted By Naanu
pressey.. i am not sure if it has to be done in...
pressey..
i am not sure if it has to be done in such a complicated way, but I did it as below

id = ps -ef | grep myprocessname | grep -v grep | cut -c5-c10

psrset -b processor_set_id $id

...
Forum: Solaris 03-20-2007
15,556
Posted By Naanu
getting pid of process
hi all,

Is there a simple script anyone could through out to me, to find the pid of a process given the name. I actually need to bind this pid to a processor set. I would probably put these...
Forum: Solaris 03-16-2007
24,404
Posted By Naanu
Yes Reborg. By buffer do you mean the tempbuf...
Yes Reborg.
By buffer do you mean the tempbuf that we pass to the sendto() or is it the memory buffers associated with the socket. For the latter one, how do I find whats assigned and how much is...
Forum: Solaris 03-16-2007
24,404
Posted By Naanu
Sorry Reborg. The intention to bump was two fold....
Sorry Reborg. The intention to bump was two fold.
To show my desperation and the other to rephrase my question.
Pardon a rookie.
Buffer is sufficiently big enough. the sokcet is non blocking. What...
Forum: Solaris 03-16-2007
24,404
Posted By Naanu
Could anyone please help? Let me put it in a...
Could anyone please help?

Let me put it in a different way. What do I do with an EAGAIN returned from UDP sendto socket?

Is it due to system load(I really doubt that, cause its just stray...
Showing results 1 to 25 of 34

 
All times are GMT -4. The time now is 09:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy