ofproto: Fix used time of revalidated subrules.
authorBen Pfaff <blp@nicira.com>
Thu, 11 Nov 2010 19:04:10 +0000 (11:04 -0800)
committerBen Pfaff <blp@nicira.com>
Thu, 11 Nov 2010 19:04:10 +0000 (11:04 -0800)
Despite the comment, the 'used' member of a rule is always set to at least
the value of 'created', except in one case in revalidation.  That case
appears to be just a mistake, so this commit changes it and corrects the
comment.

ofproto/ofproto.c

index dbde7c04630f84d3cc8d3c51d6ec287d33272ead..8348868b928879bb3d9c2c5caab956f292fb566b 100644 (file)
@@ -88,7 +88,7 @@ struct rule {
     uint16_t idle_timeout;      /* In seconds from time of last use. */
     uint16_t hard_timeout;      /* In seconds from time of creation. */
     bool send_flow_removed;     /* Send a flow removed message? */
-    long long int used;         /* Last-used time (0 if never used). */
+    long long int used;         /* Time last used; time created if not used. */
     long long int created;      /* Creation time. */
     uint64_t packet_count;      /* Number of packets received. */
     uint64_t byte_count;        /* Number of bytes received. */
@@ -4823,8 +4823,7 @@ revalidate_rule(struct ofproto *p, struct rule *rule)
             rule->super = super;
             rule->hard_timeout = super->hard_timeout;
             rule->idle_timeout = super->idle_timeout;
-            rule->created = super->created;
-            rule->used = 0;
+            rule->created = rule->used = super->created;
         }
     }