Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Apr 2011 15:40:57 +0000 (UTC)
From:      Mikolaj Golub <trociny@FreeBSD.org>
To:        cvs-src-old@freebsd.org
Subject:   cvs commit: src/sys/geom/gate g_gate.c
Message-ID:  <201104101541.p3AFf5WA091224@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
trociny     2011-04-10 15:40:57 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_8)
    sys/geom/gate        g_gate.c 
  Log:
  SVN rev 220524 on 2011-04-10 15:40:57Z by trociny
  
  MFC r220264:
  
  r220264 (pjd):
  
  GEOM has an internal mechanism to deal with ENOMEM errors returned via
  g_io_deliver(). In such case it increases 'pace' counter on each ENOMEM and
  reschedules the request. The 'pace' counter is decreased for each request going
  down, but until 'pace' is greater than zero, GEOM will handle at most 10
  requests per second. For GEOM GATE users that are proxy to local GEOM providers
  (like ggatel(8) and HAST) we can end up with almost permanent slow down of GEOM
  down queue. This is because once we reach GEOM GATE queue limit, we return
  ENOMEM to the GEOM. This means that we have, eg. 1024 I/O requests in the GEOM
  GATE queue. To make room in the queue and stop returning ENOMEM we need to
  proceed the requests of course, but those requests are handled by userland
  daemons that handle them by reading/writing also from/to local GEOM providers.
  For example with HAST, a new requests comes to /dev/hast/data, which is GEOM
  GATE provider. GEOM GATE passes the request to hastd(8) and hastd(8)
  reads/writes from/to /dev/da0. Once we reach GEOM GATE queue limit, to free up
  a slot in GEOM GATE queue, hastd(8) has to read/write from/to /dev/da0, but
  this request will also be very slow, because GEOM now slows down all the
  requests. We end up with full queue that we can unload at the speed of 10
  requests per second. This simply looks like a deadlock.
  
  Fix it by allowing userland daemons that work with both GEOM GATE and local
  GEOM providers to specify unlimited queue size, so GEOM GATE will never return
  ENOMEM to the GEOM.
  
  Approved by:    pjd (mentor)
  
  Revision   Changes    Path
  1.26.10.6  +1 -1      src/sys/geom/gate/g_gate.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201104101541.p3AFf5WA091224>