Author: dim
Date: Wed Dec  5 20:50:40 2012
New Revision: 243907
URL: http://svnweb.freebsd.org/changeset/base/243907

Log:
  Fix an old bug in devd, where it uses std::sort() to sort the various
  lists it reads from its configuration files on the priority field.
  
  Because some items in the lists have the same priority, and std::sort()
  is not stable, the exact order in which the items are enumerated does
  not have to correspond to the order they appear in the configuration
  files.
  
  Apparently this was never noticed with libstdc++, but with libc++ it
  could cause the "uhid" entry from /etc/devd/usb.conf to be used instead
  of the "ums" entry (which is earlier in the file).  This caused the
  problem described in the PR: the USB mouse module was never loaded, and
  the other actions (such as starting moused) were not executed.
  
  To fix the problem, make devd use std:stable_sort() instead.
  
  Reported by:  Jan Beich <[email protected]>
  PR:           bin/172958
  MFC after:    2 weeks

Modified:
  head/sbin/devd/devd.cc

Modified: head/sbin/devd/devd.cc
==============================================================================
--- head/sbin/devd/devd.cc      Wed Dec  5 20:28:44 2012        (r243906)
+++ head/sbin/devd/devd.cc      Wed Dec  5 20:50:40 2012        (r243907)
@@ -445,7 +445,7 @@ public:
 void
 config::sort_vector(vector<event_proc *> &v)
 {
-       sort(v.begin(), v.end(), epv_greater());
+       stable_sort(v.begin(), v.end(), epv_greater());
 }
 
 void
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to