~ubuntu-branches/ubuntu/trusty/ceph/trusty-proposed

« back to all changes in this revision

Viewing changes to src/common/WorkQueue.cc

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2015-01-23 16:29:08 UTC
  • mfrom: (0.3.21)
  • Revision ID: package-import@ubuntu.com-20150123162908-5rsgaz037l7f3nqs
Tags: 0.80.8-0ubuntu0.14.04.1
New upstream stable point release (LP: #1413917).

Show diffs side-by-side

added added

removed removed

Lines of Context:
271
271
  for (set<WorkThread*>::iterator p = _threads.begin();
272
272
       p != _threads.end();
273
273
       ++p) {
 
274
    ldout(cct,10) << __func__ 
 
275
                  << " class " << cls << " priority " << priority
 
276
                  << " pid " << (*p)->get_pid()
 
277
                  << dendl;
274
278
    int r = (*p)->set_ioprio(cls, priority);
275
279
    if (r < 0)
276
280
      lderr(cct) << " set_ioprio got " << cpp_strerror(r) << dendl;