> remove_filter('wp_head', 'feed_links_extra');
In default-filters.php, you can find the following line:
add_action( 'wp_head', 'feed_links_extra', 3 );
To remove it, I think it's necessary to pass the same priority:
remove_action( 'wp_head', 'feed_links_extra', 3 );