static void lnet_shuffle_seed(void)
 {
        static int seeded;
-       __u32 lnd_type, seed[2];
-       struct timespec64 ts;
        struct lnet_ni *ni;
 
        if (seeded)
                return;
 
-       cfs_get_random_bytes(seed, sizeof(seed));
-
        /*
         * Nodes with small feet have little entropy
         * the NID for this node gives the most entropy in the low bits
         */
        list_for_each_entry(ni, &the_lnet.ln_nis, ni_list) {
-               lnd_type = LNET_NETTYP(LNET_NIDNET(ni->ni_nid));
+               __u32 lnd_type, seed;
 
-               if (lnd_type != LOLND)
-                       seed[0] ^= (LNET_NIDADDR(ni->ni_nid) | lnd_type);
+               lnd_type = LNET_NETTYP(LNET_NIDNET(ni->ni_nid));
+               if (lnd_type != LOLND) {
+                       seed = (LNET_NIDADDR(ni->ni_nid) | lnd_type);
+                       add_device_randomness(&seed, sizeof(seed));
+               }
        }
 
-       ktime_get_ts64(&ts);
-       cfs_srand(ts.tv_sec ^ seed[0], ts.tv_nsec ^ seed[1]);
        seeded = 1;
 }
 
 
 static int __init lustre_init(void)
 {
        struct lnet_process_id lnet_id;
-       struct timespec64 ts;
-       int i, rc, seed[2];
+       int i, rc;
 
        BUILD_BUG_ON(sizeof(LUSTRE_VOLATILE_HDR) !=
                     LUSTRE_VOLATILE_HDR_LEN + 1);
                goto out_debugfs;
        }
 
-       cfs_get_random_bytes(seed, sizeof(seed));
-
        /* Nodes with small feet have little entropy. The NID for this
         * node gives the most entropy in the low bits
         */
        for (i = 0;; i++) {
+               u32 seed;
+
                if (LNetGetId(i, &lnet_id) == -ENOENT)
                        break;
-
-               if (LNET_NETTYP(LNET_NIDNET(lnet_id.nid)) != LOLND)
-                       seed[0] ^= LNET_NIDADDR(lnet_id.nid);
+               if (LNET_NETTYP(LNET_NIDNET(lnet_id.nid)) != LOLND) {
+                        seed = LNET_NIDADDR(lnet_id.nid);
+                        add_device_randomness(&seed, sizeof(seed));
+               }
        }
 
-       ktime_get_ts64(&ts);
-       cfs_srand(ts.tv_sec ^ seed[0], ts.tv_nsec ^ seed[1]);
-
        rc = vvp_global_init();
        if (rc != 0)
                goto out_sysfs;
 
 int class_handle_init(void)
 {
        struct handle_bucket *bucket;
-       struct timespec64 ts;
-       int seed[2];
 
        LASSERT(!handle_hash);
 
                spin_lock_init(&bucket->lock);
        }
 
-       /** bug 21430: add randomness to the initial base */
-       cfs_get_random_bytes(seed, sizeof(seed));
-       ktime_get_ts64(&ts);
-       cfs_srand(ts.tv_sec ^ seed[0], ts.tv_nsec ^ seed[1]);
-
        cfs_get_random_bytes(&handle_base, sizeof(handle_base));
        LASSERT(handle_base != 0ULL);