<div style="line-height:1.7;color:#000000;font-size:14px;font-family:Arial"><pre>Hi Philipp,</pre><br>The third point about modification is that it may not cover all scenarios.<br><br>In w_after_state_change(), between generating the new current_uuid and<br>clearing the susp_uuid, it is possible that another thread set the __NEW_CUR_UUID flag.<br><br>The problem scenario is as follows:<br><br>T1:<br>begin_state_change()<br>end_state_change()<br>&nbsp; __end_state_change()<br>&nbsp;&nbsp;&nbsp; ___end_state_change()<br>&nbsp;&nbsp;&nbsp; # susp_uuid value is {True, True}<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; T2: w_after_state_change()<br><div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; drbd_uuid_new_current()</div><div><br></div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; T3:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; begin_state_change()<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # set __NEW_CUR_UUID flag<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; end_state_change()<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; begin_state_change()<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # set susp_uuid[NEW] = False<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; end_state_change()<br><br>In the end, the NEW_CUR_UUID flag bit is generated and not cleaned up.<br><br>Therefore, the third point about modification can be change to this:<br><br>diff --git a/drbd/drbd_state.c b/drbd/drbd_state.c<br>index e35150340..2101c0ebc 100644<br>--- a/drbd/drbd_state.c<br>+++ b/drbd/drbd_state.c<br>@@ -2553,6 +2553,7 @@ static bool should_try_become_up_to_date(struct drbd_device *device, enum drbd_d<br>&nbsp;static void finish_state_change(struct drbd_resource *resource, const char *tag)<br>&nbsp;{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; enum drbd_role *role = resource-&gt;role;<br>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; bool *susp_uuid = resource-&gt;susp_uuid;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; struct drbd_device *device;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; struct drbd_connection *connection;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; bool starting_resync = false;<br>@@ -2828,7 +2829,7 @@ static void finish_state_change(struct drbd_resource *resource, const char *tag)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (role[OLD] == R_SECONDARY &amp;&amp; role[NEW] == R_PRIMARY)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; create_new_uuid = true;<br>&nbsp;<br>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (create_new_uuid)<br>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (create_new_uuid &amp;&amp; !susp_uuid[OLD])<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; set_bit(__NEW_CUR_UUID, &amp;device-&gt;flags);<br>&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (disk_state[NEW] != D_NEGOTIATING &amp;&amp; get_ldev_if_state(device, D_DETACHING)) {<br><br><div>best regards,</div><div>Zhengbing<br></div><div><br></div><br><br><div  style="position:relative;zoom:1"></div><br><pre><br>From: Philipp Reisner &lt;philipp.reisner@linbit.com&gt;
Date: 2023-11-25 15:47:16
To:  "黄正兵" &lt;zhengbing.huang@easystack.cn&gt;
Cc:  dongsheng.yang@easystack.cn,drbd-dev@lists.linbit.com
Subject: Re: Re: [PATCH] drbd: when change susp_uuid[NEW] to true, make sure susp_uuid[OLD] is false&gt;Hi Zhengbing,
&gt;
&gt;Lars and I came up with this:
&gt;
&gt;commit e31d63966fac73fc000b584ccb2580016eccda17
&gt;Author: Philipp Reisner &lt;philipp.reisner@linbit.com&gt;
&gt;Date:   Thu Nov 23 06:31:28 2023 +0100
&gt;
&gt;   drbd: fix susp_uuid clearing
&gt;
&gt;   I introduced susp_uuid for keeping a resource longer suspended for
&gt;   writing a new current-uuid.
&gt;   But in the following scenario, it failed to clear the susp_uuid bit:
&gt;
&gt;    1. The network connection between a primary and secondary node
&gt;       fails. The primary has the setting quorum=2. IO freezes on the
&gt;       primary node.
&gt;
&gt;    2. The user changes the quorum setting from 2 to one. The primary
&gt;       node generates a new current-uuid and clears the susp_uuid bit in
&gt;       a second state change.
&gt;
&gt;    3. If, during the second state change, another condition for creating
&gt;       a new current UUID evaluates to true, the code fails to clear the
&gt;       suspen_uuid bit.
&gt;
&gt;   Fixing this in three places:
&gt;    1. in sanitize_state(): Only set susp_uuid[NEW] if susp_uuid[OLD]
&gt;       was not set. That avoids it happening a second time after
&gt;       one iteration.
&gt;
&gt;    2. in w_after_state_chage(): Always end the cycle by setting clearing
&gt;       susp_uuid[NEW] if it is set. (Independently of susp_uuid[OLD].
&gt;
&gt;    3. in finish_sate_change(): Do not set NEW_CUR_UUID again if we are
&gt;       in this operation.
&gt;
&gt;   Strictly speaking, (2) is unnecessary after (1), but I also do it
&gt;   since it shortens the code. Also, (3) alone would fix the issue.
&gt;
&gt;   Fixes: d47f7456ab ("drbd: create new UUID before resuming IO upon
&gt;   regaining quorum")
&gt;
&gt;   Co-developed-by: zhengbing.huang &lt;zhengbing.huang@easystack.cn&gt;
&gt;   Co-developed-by: Lars Ellenberg &lt;lars.ellenberg@linbit.com&gt;
&gt;
&gt;diff --git a/drbd/drbd_state.c b/drbd/drbd_state.c
&gt;index e35150340..b884bb622 100644
&gt;--- a/drbd/drbd_state.c
&gt;+++ b/drbd/drbd_state.c
&gt;@@ -2353,7 +2353,8 @@ static void sanitize_state(struct drbd_resource *resource)
&gt;       resource-&gt;susp_quorum[NEW] =
&gt;               resource-&gt;res_opts.on_no_quorum == ONQ_SUSPEND_IO ?
&gt;!resource_has_quorum : false;
&gt;
&gt;-       if (resource_is_suspended(resource, OLD) &amp;&amp;
&gt;!resource_is_suspended(resource, NEW)) {
&gt;+       if (!resource-&gt;susp_uuid[OLD] &amp;&amp;
&gt;+           resource_is_suspended(resource, OLD) &amp;&amp;
&gt;!resource_is_suspended(resource, NEW)) {
&gt;               idr_for_each_entry(&amp;resource-&gt;devices, device, vnr) {
&gt;                       if (test_bit(NEW_CUR_UUID, &amp;device-&gt;flags)) {
&gt;                               resource-&gt;susp_uuid[NEW] = true;
&gt;@@ -2553,6 +2554,7 @@ static bool should_try_become_up_to_date(struct
&gt;drbd_device *device, enum drbd_d
&gt;static void finish_state_change(struct drbd_resource *resource, const char *tag)
&gt;{
&gt;       enum drbd_role *role = resource-&gt;role;
&gt;+       bool *susp_uuid = resource-&gt;susp_uuid;
&gt;       struct drbd_device *device;
&gt;       struct drbd_connection *connection;
&gt;       bool starting_resync = false;
&gt;@@ -2828,7 +2830,10 @@ static void finish_state_change(struct
&gt;drbd_resource *resource, const char *tag)
&gt;               if (role[OLD] == R_SECONDARY &amp;&amp; role[NEW] == R_PRIMARY)
&gt;                       create_new_uuid = true;
&gt;
&gt;-               if (create_new_uuid)
&gt;+               /* When susp_uuid goes from true to false, we just created a new
&gt;+                * current-uuid, it is pointless to do this one more time
&gt;+                */
&gt;+               if (create_new_uuid &amp;&amp; !(susp_uuid[OLD] &amp;&amp; !susp_uuid[NEW]))
&gt;                       set_bit(__NEW_CUR_UUID, &amp;device-&gt;flags);
&gt;
&gt;               if (disk_state[NEW] != D_NEGOTIATING &amp;&amp;
&gt;get_ldev_if_state(device, D_DETACHING)) {
&gt;@@ -4189,7 +4194,7 @@ static int w_after_state_change(struct drbd_work
&gt;*w, int unused)
&gt;                       still_connected = true;
&gt;       }
&gt;
&gt;-       if (!susp_uuid[OLD] &amp;&amp; susp_uuid[NEW]) {
&gt;+       if (susp_uuid[NEW]) {
&gt;               unsigned long irq_flags;
&gt;
&gt;               begin_state_change(resource, &amp;irq_flags, CS_VERBOSE);
&gt;
&gt;On Thu, Nov 23, 2023 at 9:48 AM 黄正兵 &lt;zhengbing.huang@easystack.cn&gt; wrote:
&gt;&gt;
&gt;&gt; Hi Philipp,
&gt;&gt;
&gt;&gt; Such modifications may cause new problems.
&gt;&gt;
&gt;&gt;  If, during the second state change,  the NEW_CUR_UUID flag was not cleared.
&gt;&gt;  clears the susp_uuid bit in a  thirdly state change.
&gt;&gt;
&gt;&gt; Eventually, it becomes an endless cycle.
&gt;&gt;
&gt;&gt; So, is it possible to add the following modifications:
&gt;&gt;
&gt;&gt; diff --git a/drbd/drbd_state.c b/drbd/drbd_state.c
&gt;&gt; index 2fbd0b1..6bd6431 100644
&gt;&gt; --- a/drbd/drbd_state.c
&gt;&gt; +++ b/drbd/drbd_state.c
&gt;&gt; @@ -3938,9 +3938,13 @@ static int w_after_state_change(struct drbd_work *w, int unused)
&gt;&gt;                                 drbd_maybe_khelper(device, connection, "disconnected");
&gt;&gt;                 }
&gt;&gt;
&gt;&gt; -               if (!susp_uuid[OLD] &amp;&amp; susp_uuid[NEW] &amp;&amp;
&gt;&gt; -                   test_and_clear_bit(NEW_CUR_UUID, &amp;device-&gt;flags))
&gt;&gt; -                       new_current_uuid = true;
&gt;&gt; +               if (susp_uuid[NEW]) {
&gt;&gt; +                       if (susp_uuid[OLD])
&gt;&gt; +                               clear_bit(NEW_CUR_UUID, &amp;device-&gt;flags);
&gt;&gt; +                       else if (test_and_clear_bit(NEW_CUR_UUID, &amp;device-&gt;flags))) {
&gt;&gt; +                               new_curr_uuid = true;
&gt;&gt; +                       }
&gt;&gt; +               }
&gt;&gt;
&gt;&gt;                 if (new_current_uuid)
&gt;&gt;                         drbd_uuid_new_current(device, false);
&gt;&gt;
&gt;&gt; best regards,
&gt;&gt; Zhengbing
&gt;&gt;
&gt;&gt;
&gt;&gt;
&gt;&gt;
&gt;&gt;
&gt;&gt; From: Philipp Reisner &lt;philipp.reisner@linbit.com&gt;
&gt;&gt; Date: 2023-11-23 14:06:30
&gt;&gt; To:  "zhengbing.huang" &lt;zhengbing.huang@easystack.cn&gt;
&gt;&gt; Cc:  drbd-dev@lists.linbit.com,joel.colledge@linbit.com
&gt;&gt; Subject: Re: [PATCH] drbd: when change susp_uuid[NEW] to true, make sure susp_uuid[OLD] is false&gt;Hello Zhengbing,
&gt;&gt; &gt;
&gt;&gt; &gt;Thank you for pointing this out. I created a little bit different patch.
&gt;&gt; &gt;First, the sanitize_state() function should clean up the new state,
&gt;&gt; &gt;but I think it should never change the old state.
&gt;&gt; &gt;It can not rewrite history.
&gt;&gt; &gt;Second, we do not want to create two new current-uuids while I/O is frozen.
&gt;&gt; &gt;
&gt;&gt; &gt;    drbd: fix susp_uuid clearing
&gt;&gt; &gt;
&gt;&gt; &gt;   I introduced susp_uuid for keeping a resource longer suspended for
&gt;&gt; &gt;   writing a new current-uuid.
&gt;&gt; &gt;   But in the following scenario, it failed to clear the susp_uuid bit:
&gt;&gt; &gt;
&gt;&gt; &gt;    1. The network connection between a primary and secondary node
&gt;&gt; &gt;    fails. The primary has the setting quorum=2. IO freezes on the
&gt;&gt; &gt;    primary node.
&gt;&gt; &gt;
&gt;&gt; &gt;    2. The user changes the quorum setting from 2 to one. The primary
&gt;&gt; &gt;    node generates a new current-uuid and clears the susp_uuid bit in a
&gt;&gt; &gt;    second state change.
&gt;&gt; &gt;
&gt;&gt; &gt;    3. If, during the second state change, another condition for creating
&gt;&gt; &gt;    a new current UUID evaluates to true, the code fails to clear the
&gt;&gt; &gt;    suspen_uuid bit.
&gt;&gt; &gt;
&gt;&gt; &gt;   The second attempt to create a new current-uuid gets ignored since it
&gt;&gt; &gt;   is pointless to create two current-uuids while I/O is frozen.
&gt;&gt; &gt;
&gt;&gt; &gt;   Fixes: d47f7456ab ("drbd: create new UUID before resuming IO upon
&gt;&gt; &gt;   regaining quorum")
&gt;&gt; &gt;
&gt;&gt; &gt;   Co-developed-by: zhengbing.huang &lt;zhengbing.huang@easystack.cn&gt;
&gt;&gt; &gt;
&gt;&gt; &gt;diff --git a/drbd/drbd_state.c b/drbd/drbd_state.c
&gt;&gt; &gt;index e35150340..316d3fd39 100644
&gt;&gt; &gt;--- a/drbd/drbd_state.c
&gt;&gt; &gt;+++ b/drbd/drbd_state.c
&gt;&gt; &gt;@@ -4189,7 +4189,7 @@ static int w_after_state_change(struct drbd_work
&gt;&gt; &gt;*w, int unused)
&gt;&gt; &gt;                       still_connected = true;
&gt;&gt; &gt;       }
&gt;&gt; &gt;
&gt;&gt; &gt;-       if (!susp_uuid[OLD] &amp;&amp; susp_uuid[NEW]) {
&gt;&gt; &gt;+       if (susp_uuid[NEW]) {
&gt;&gt; &gt;               unsigned long irq_flags;
&gt;&gt; &gt;
&gt;&gt; &gt;               begin_state_change(resource, &amp;irq_flags, CS_VERBOSE);
&gt;&gt; &gt;
&gt;&gt; &gt;
&gt;&gt; &gt;I give this to internal review for merging.
&gt;&gt; &gt;
&gt;&gt; &gt;best regards,
&gt;&gt; &gt; Philipp
&gt;&gt; &gt;
&gt;&gt; &gt;
&gt;&gt; &gt;On Wed, Nov 22, 2023 at 4:25 AM zhengbing.huang
&gt;&gt; &gt;&lt;zhengbing.huang@easystack.cn&gt; wrote:
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; The problem scenario is as follows:
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; 1. drbd is built on two nodes, role is primary and secondary, quorum is 2.
&gt;&gt; &gt;&gt;    then drbd's network fails. IO will be suspended.
&gt;&gt; &gt;&gt; 2. primary modify quorum to 1, during this state change,
&gt;&gt; &gt;&gt;    drbd will set susp_uuid[NEW] to true and generate a new UUID.
&gt;&gt; &gt;&gt; 3. then in w_after_state_change, start the second state change,
&gt;&gt; &gt;&gt;    set susp_uuid[NEW] to false. but during the second state change,
&gt;&gt; &gt;&gt;    it's possible to find NEW_CUR_UUID flag was set by others.
&gt;&gt; &gt;&gt;    then sanitize_state() will set susp_uuid[NEW] to true.
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; Finally susp_uuid value is {true, true}, IO is frozen.
&gt;&gt; &gt;&gt; And there is no way to set susp_uuid to false after that.
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; So, while susp_uuid[NEW] is set to true, we want susp_uuid[OLD] to be false.
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; Fixes: d47f7456ab ("drbd: create new UUID before resuming IO upon regaining quorum")
&gt;&gt; &gt;&gt; Signed-off-by: zhengbing.huang &lt;zhengbing.huang@easystack.cn&gt;
&gt;&gt; &gt;&gt; ---
&gt;&gt; &gt;&gt;  drbd/drbd_state.c | 1 +
&gt;&gt; &gt;&gt;  1 file changed, 1 insertion(+)
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; diff --git a/drbd/drbd_state.c b/drbd/drbd_state.c
&gt;&gt; &gt;&gt; index e35150340..0dedd2dae 100644
&gt;&gt; &gt;&gt; --- a/drbd/drbd_state.c
&gt;&gt; &gt;&gt; +++ b/drbd/drbd_state.c
&gt;&gt; &gt;&gt; @@ -2356,6 +2356,7 @@ static void sanitize_state(struct drbd_resource *resource)
&gt;&gt; &gt;&gt;         if (resource_is_suspended(resource, OLD) &amp;&amp; !resource_is_suspended(resource, NEW)) {
&gt;&gt; &gt;&gt;                 idr_for_each_entry(&amp;resource-&gt;devices, device, vnr) {
&gt;&gt; &gt;&gt;                         if (test_bit(NEW_CUR_UUID, &amp;device-&gt;flags)) {
&gt;&gt; &gt;&gt; +                               resource-&gt;susp_uuid[OLD] = false;
&gt;&gt; &gt;&gt;                                 resource-&gt;susp_uuid[NEW] = true;
&gt;&gt; &gt;&gt;                                 break;
&gt;&gt; &gt;&gt;                         }
&gt;&gt; &gt;&gt; --
&gt;&gt; &gt;&gt; 2.17.1
&gt;&gt; &gt;&gt;
&gt;&gt;
&gt;&gt;
</pre></div><br>