+void
+fw3_hotplug_zones(bool add, struct fw3_state *state)
+{
+ struct fw3_zone *z;
+ struct fw3_device *d;
+
+ if (add)
+ {
+ list_for_each_entry(z, &state->running_zones, running_list)
+ {
+ if (!hasbit(z->flags[0], FW3_FLAG_HOTPLUG))
+ {
+ list_for_each_entry(d, &z->devices, list)
+ fw3_hotplug(add, z, d);
+
+ setbit(z->flags[0], FW3_FLAG_HOTPLUG);
+ }
+ }
+ }
+ else
+ {
+ list_for_each_entry(z, &state->running_zones, running_list)
+ {
+ if (hasbit(z->flags[0], FW3_FLAG_HOTPLUG))
+ {
+ list_for_each_entry(d, &z->running_devices, list)
+ fw3_hotplug(add, z, d);
+
+ delbit(z->flags[0], FW3_FLAG_HOTPLUG);
+ }
+ }
+ }
+}
+