Previously, I didn't notice that RSS hash has already been recalculated
explicitly by rss_mbuf_software_hash_v4() in ip_reass() which is same
as what rss_soft_m2cpuid_v4() does, so it is okay to use rss_m2cpuid()
in ip_direct_nh. Sorry! >_<...
But I still think it is better to use rss_soft_m2cpuid_v4() to recalculate
the RSS hash instead of calling rss_mbuf_software_hash_v4() directly in
ip_reass(). Because it could maximize code reuse, and it won't introduce
additional overhead. So this patch removes the explicit RSS hash
recalculation code in ip_reass().