for measure the throughput... i use the netpref...
# cat /sys/class/net/eth0/queues/rx-0/rps_cpus
00

# netperf -t TCP_RR -H 10.115.1.59
TCP REQUEST/RESPONSE TEST from 0.0.0.0 (0.0.0.0) port 0 AF_INET to 10.115.1.59 (10.115.1.59) port 0 AF_INET : demo
Local /Remote
Socket Size Request Resp. Elapsed Trans.
Send Recv Size Size Time Rate
bytes Bytes bytes bytes secs. per sec

16384 87380 1 1 10.00 21792.04
16384 87380


After that i change the RPS field...
#echo f > /sys/class/net/eth0/queues/rx-0/rps_cpus
#cat /sys/class/net/eth0/queues/rx-0/rps_cpus
03


# netperf -t TCP_RR -H 10.115.1.59
TCP REQUEST/RESPONSE TEST from 0.0.0.0 (0.0.0.0) port 0 AF_INET to 10.115.1.59 (10.115.1.59) port 0 AF_INET : demo
Local /Remote
Socket Size Request Resp. Elapsed Trans.
Send Recv Size Size Time Rate
bytes Bytes bytes bytes secs. per sec

16384 87380 1 1 10.00 21758.73
16384 87380


*MY QUESTION IS WHY ITS GIVE SAME RESULT WITH AND WITH OUT RPS
*HOW TO CHECK WHETHER RPS IS WORKING OR NOT



PLEASE GIVE ANY SOLUTION..
Thank you in advance.....