K 10 svn:author V 3 lev K 8 svn:date V 27 2011-10-04T17:09:10.306354Z K 7 svn:log V 607 Add geom_notify_*() calls to geom_raid. It is not a trivial change. To determine state of volume(s) after disk disconnection, new method to raid transformation object interface (g_raid_tr) was added: METHOD int getvolstatus { struct g_raid_tr_object *tr; struct g_raid_volume *volume; }; This method should return state (G_RAID_VOLUME_S_XXX) of the given voulme. Also, some trnasformation modules have status detection code factored out from g_raid_tr_update_state_NAME code. And some hasn't, as they perform active actions in this method and getvolstatus() method should be passive one. END