# HG changeset patch
# User valeriep
# Date 1287104507 25200
# Node ID 92894a4882e08c7f6ee4585fc097b7db223b90bf
# Parent  361524087cdbbcff28b6cf9bb11c5e1ae23ec8a6
6850402: Deadlock on sun.security.jca.ProviderConfig starting from jdk7-b55
Summary: Reduced the scope of locking
Reviewed-by: vinnie

diff -r 361524087cdb -r 92894a4882e0 jdk/src/share/classes/sun/security/jca/Providers.java
--- a/jdk/src/share/classes/sun/security/jca/Providers.java	Thu Oct 14 17:59:58 2010 -0700
+++ b/jdk/src/share/classes/sun/security/jca/Providers.java	Thu Oct 14 18:01:47 2010 -0700
@@ -159,15 +159,18 @@
      * could not be loaded) removed. This is the list we need to
      * present to applications.
      */
-    public static synchronized ProviderList getFullProviderList() {
-        ProviderList list = getThreadProviderList();
-        if (list != null) {
-            ProviderList newList = list.removeInvalid();
-            if (newList != list) {
-                changeThreadProviderList(newList);
-                list = newList;
+    public static ProviderList getFullProviderList() {
+        ProviderList list;
+        synchronized (Providers.class) {
+            list = getThreadProviderList();
+            if (list != null) {
+                ProviderList newList = list.removeInvalid();
+                if (newList != list) {
+                    changeThreadProviderList(newList);
+                    list = newList;
+                }
+                return list;
             }
-            return list;
         }
         list = getSystemProviderList();
         ProviderList newList = list.removeInvalid();