csum_partial and csum_partial_copy_generic are defined unconditionally and are available even when CONFIG_NET is disabled. They are used not only by the network drivers, but also by scsi and media. Don't limit these functions export by CONFIG_NET. Signed-off-by: Max Filippov <jcmvbkbc@...
EXPORT_SYMBOL(csum_partial); Expand All@@ -118,6 +151,6 @@ EXPORT_SYMBOL(csum_partial); */ __sum16ip_compute_csum(constvoid*buff,intlen) { returncsum_fold(csum_partial(buff,len,0)); returncsum_fold(csum_partial(buff,len,0)); ...