svec: Avoid calling svec_sort() when it is not necessary.
authorBen Pfaff <blp@nicira.com>
Wed, 15 Apr 2009 22:04:10 +0000 (15:04 -0700)
committerBen Pfaff <blp@nicira.com>
Wed, 15 Apr 2009 22:04:10 +0000 (15:04 -0700)
commit14830fda4bb2cadc3b891dad77039079935c8cc7
tree4f45d42ac1a916675b9dc913e7ad6ed5235ab2b3
parent701f48755657a288e4d3a955321e669dabc3be68
svec: Avoid calling svec_sort() when it is not necessary.

When we delete an item from a sorted array we just have to move the rest
of the items down to keep it sorted; we don't have to actually re-sort
the whole thing.
lib/svec.c