diff --git wp-includes/plugin.php wp-includes/plugin.php
index f5d213d..8b8b166 100644
--- wp-includes/plugin.php
+++ wp-includes/plugin.php
@@ -642,12 +642,26 @@ function plugin_basename( $file ) {
 function wp_register_plugin_realpath( $file ) {
 	global $wp_plugin_paths;
 
+	// Normalize, but store as static to avoid constant recalculation of a
+	// constant value
+	static $wp_plugin_path, $wpmu_plugin_path;
+	if ( empty( $wp_plugin_path ) || empty( $wpmu_plugin_path ) ) {
+		$wp_plugin_path = wp_normalize_path( WP_PLUGIN_DIR );
+		$wpmu_plugin_path = wp_normalize_path( WPMU_PLUGIN_DIR );
+	}
+
 	$plugin_path = wp_normalize_path( dirname( $file ) );
 	$plugin_realpath = wp_normalize_path( dirname( realpath( $file ) ) );
 
+	if ( $plugin_path === $wp_plugin_path || $plugin_path === $wpmu_plugin_path ) {
+		return false;
+	}
+
 	if ( $plugin_path !== $plugin_realpath ) {
 		$wp_plugin_paths[ $plugin_path ] = $plugin_realpath;
 	}
+
+	return true;
 }
 
 /**
diff --git wp-settings.php wp-settings.php
index aee35b3..9f73195 100644
--- wp-settings.php
+++ wp-settings.php
@@ -168,7 +168,6 @@ $GLOBALS['wp_plugin_paths'] = array();
 
 // Load must-use plugins.
 foreach ( wp_get_mu_plugins() as $mu_plugin ) {
-	wp_register_plugin_realpath( $mu_plugin );
 	include_once( $mu_plugin );
 }
 unset( $mu_plugin );
