spin_unlock(ap->lock);
 
        /* If the device fell off, no sense in issuing commands */
-       if (dev->gone)
+       if (test_bit(SAS_DEV_GONE, &dev->state))
                goto out;
 
        task = sas_alloc_task(GFP_ATOMIC);
 
        struct domain_device *child, *n;
 
        list_for_each_entry_safe(child, n, &ex->children, siblings) {
-               child->gone = 1;
+               set_bit(SAS_DEV_GONE, &child->state);
                if (child->dev_type == EDGE_DEV ||
                    child->dev_type == FANOUT_DEV)
                        sas_unregister_ex_tree(port, child);
                        &ex_dev->children, siblings) {
                        if (SAS_ADDR(child->sas_addr) ==
                            SAS_ADDR(phy->attached_sas_addr)) {
-                               child->gone = 1;
+                               set_bit(SAS_DEV_GONE, &child->state);
                                if (child->dev_type == EDGE_DEV ||
                                    child->dev_type == FANOUT_DEV)
                                        sas_unregister_ex_tree(parent->port, child);
                                break;
                        }
                }
-               parent->gone = 1;
+               set_bit(SAS_DEV_GONE, &parent->state);
                sas_disable_routing(parent, phy->attached_sas_addr);
        }
        memset(phy->attached_sas_addr, 0, SAS_ADDR_SIZE);
 
 
        if (port->num_phys == 1) {
                if (dev && gone)
-                       dev->gone = 1;
+                       set_bit(SAS_DEV_GONE, &dev->state);
                sas_unregister_domain_devices(port);
                sas_port_delete(port->port);
                port->port = NULL;
 
        int res = 0;
 
        /* If the device fell off, no sense in issuing commands */
-       if (dev->gone) {
+       if (test_bit(SAS_DEV_GONE, &dev->state)) {
                cmd->result = DID_BAD_TARGET << 16;
                goto out_done;
        }