* Do not accept connections if obd is not set up, or not configured
* yet.
*/
- if (!target || target->obd_stopping || !target->obd_set_up ||
- !target->obd_configured) {
+ if (!target || target->obd_stopping || !target->obd_set_up) {
DEBUG_REQ(D_ERROR, req, "UUID '%s' is not available "
" for connect (%s)", str, !target ? "no target" :
(target->obd_stopping ? "stopping" : "not set up"));
uuid = (struct obd_uuid *) uuid_obj.data;
target = class_uuid2obd(uuid);
- if (!target || target->obd_stopping || !target->obd_set_up ||
- !target->obd_configured) {
+ if (!target || target->obd_stopping || !target->obd_set_up) {
CERROR("target '%s' is not available for context init (%s)",
uuid->uuid, target == NULL ? "no target" :
(target->obd_stopping ? "stopping" : "not set up"));