Actually i am using tcpdump tool to monitor packets in wireless network interface.
When i terminated tcpdump with Ctrl+C after few seconds and got this total summary as output:
# tcpdump -i wlan1 -s 0 -vvv
...
313 packets captured
17320 packets received by filter
16987 packets dropped by kernel
Why is there such big dropped in number of packets captured by tcpdump?
After searching solution from the google i also tried with adding option -B 32768 with tcpdump in command line but still getting same lots of packet drop.
# tcpdump -i wlan1 -s 0 -vvv -B 32768
So how can i capture all packets at high bandwidth without dropping any packets?
I would also use -nN to not resolve hostnames and services and in addition --immediate-mode. And yes my gut feeling says that maybe the device is to slow or the buffer is to small....
It appears you are using firmware that is not from the official OpenWrt project.
When using forks/offshoots/vendor-specific builds that are "based on OpenWrt", there may be many differences compared to the official versions (hosted by OpenWrt.org). Some of these customizations may fundamentally change the way that OpenWrt works. You might need help from people with specific/specialized knowledge about the firmware you are using, so it is possible that advice you get here may not be useful.
Ask for help from the maintainer(s) or user community of the specific firmware that you are using.
Provide the source code for the firmware so that users on this forum can understand how your firmware works (OpenWrt forum users are volunteers, so somebody might look at the code if they have time and are interested in your issue).
If you believe that this specific issue is common to generic/official OpenWrt and/or the maintainers of your build have indicated as such, please feel free to clarify.
Instead of trying to capture full sized packets, maybe use -s 128 to only store the first 128 byte that should contain most/all headers? That way the same kernel buffer will suffice for more captured packets, which should reduce the number of dropped packets some.