cpumask_clear(&hv_current->tlb_lush);
 
+       if (all_cpus) {
+               kvm_make_vcpus_request_mask(kvm,
+                                   KVM_REQ_TLB_FLUSH | KVM_REQUEST_NO_WAKEUP,
+                                   NULL, &hv_current->tlb_lush);
+               goto ret_success;
+       }
+
        kvm_for_each_vcpu(i, vcpu, kvm) {
                struct kvm_vcpu_hv *hv = &vcpu->arch.hyperv;
                int bank = hv->vp_index / 64, sbank = 0;
 
-               if (!all_cpus) {
-                       /* Banks >64 can't be represented */
-                       if (bank >= 64)
-                               continue;
-
-                       /* Non-ex hypercalls can only address first 64 vCPUs */
-                       if (!ex && bank)
-                               continue;
+               /* Banks >64 can't be represented */
+               if (bank >= 64)
+                       continue;
 
-                       if (ex) {
-                               /*
-                                * Check is the bank of this vCPU is in sparse
-                                * set and get the sparse bank number.
-                                */
-                               sbank = get_sparse_bank_no(valid_bank_mask,
-                                                          bank);
+               /* Non-ex hypercalls can only address first 64 vCPUs */
+               if (!ex && bank)
+                       continue;
 
-                               if (sbank < 0)
-                                       continue;
-                       }
+               if (ex) {
+                       /*
+                        * Check is the bank of this vCPU is in sparse
+                        * set and get the sparse bank number.
+                        */
+                       sbank = get_sparse_bank_no(valid_bank_mask, bank);
 
-                       if (!(sparse_banks[sbank] & BIT_ULL(hv->vp_index % 64)))
+                       if (sbank < 0)
                                continue;
                }
 
+               if (!(sparse_banks[sbank] & BIT_ULL(hv->vp_index % 64)))
+                       continue;
+
                /*
                 * vcpu->arch.cr3 may not be up-to-date for running vCPUs so we
                 * can't analyze it here, flush TLB regardless of the specified
 
        me = get_cpu();
 
        kvm_for_each_vcpu(i, vcpu, kvm) {
-               if (!test_bit(i, vcpu_bitmap))
+               if (vcpu_bitmap && !test_bit(i, vcpu_bitmap))
                        continue;
 
                kvm_make_request(req, vcpu);
 {
        cpumask_var_t cpus;
        bool called;
-       static unsigned long vcpu_bitmap[BITS_TO_LONGS(KVM_MAX_VCPUS)]
-               = {[0 ... BITS_TO_LONGS(KVM_MAX_VCPUS)-1] = ULONG_MAX};
 
        zalloc_cpumask_var(&cpus, GFP_ATOMIC);
 
-       called = kvm_make_vcpus_request_mask(kvm, req, vcpu_bitmap, cpus);
+       called = kvm_make_vcpus_request_mask(kvm, req, NULL, cpus);
 
        free_cpumask_var(cpus);
        return called;