View | Details | Raw Unified | Return to bug 149193
Collapse All | Expand All

(-)jail/chapter.sgml (-1 / +1 lines)
Lines 661-667 Link Here
661
        returns 1 if the IP address does NOT belong to the
661
        returns 1 if the IP address does NOT belong to the
662
        <application>jail</application> or 0 otherwise.  As you can see
662
        <application>jail</application> or 0 otherwise.  As you can see
663
        from the code, if it is indeed an IP address not belonging to the
663
        from the code, if it is indeed an IP address not belonging to the
664
        <application>jail</application>, the protcol is not allowed to bind
664
        <application>jail</application>, the protocol is not allowed to bind
665
        to that address.</para>
665
        to that address.</para>
666
666
667
      <programlisting><filename>/usr/src/sys/kern/kern_jail.c:</filename>
667
      <programlisting><filename>/usr/src/sys/kern/kern_jail.c:</filename>
(-)mac/chapter.sgml (-1 / +1 lines)
Lines 330-336 Link Here
330
	permitted to sleep, limiting the use of primitives in
330
	permitted to sleep, limiting the use of primitives in
331
	those entry points to mutexes and wakeup operations.</para>
331
	those entry points to mutexes and wakeup operations.</para>
332
332
333
      <para>When policy modules call out to other kernel subsytems,
333
      <para>When policy modules call out to other kernel subsystems,
334
	they will generally need to release any in-policy locks in
334
	they will generally need to release any in-policy locks in
335
	order to avoid violating the kernel lock order or risking
335
	order to avoid violating the kernel lock order or risking
336
	lock recursion.  This will maintain policy locks as leaf
336
	lock recursion.  This will maintain policy locks as leaf
(-)usb/chapter.sgml (-2 / +2 lines)
Lines 178-184 Link Here
178
      designed to reduce hardware complexity by requiring the host
178
      designed to reduce hardware complexity by requiring the host
179
      controller driver to supply a complete schedule of the transfers
179
      controller driver to supply a complete schedule of the transfers
180
      for each frame. OHCI type controllers are much more independent
180
      for each frame. OHCI type controllers are much more independent
181
      by providing a more abstract interface doing alot of work
181
      by providing a more abstract interface doing a lot of work
182
      themselves. </para>
182
      themselves. </para>
183
183
184
    <sect2>
184
    <sect2>
Lines 246-252 Link Here
246
        is aware of scheduling priorities and the ordering of the
246
        is aware of scheduling priorities and the ordering of the
247
        types of transfers in a frame. The main data structure used by
247
        types of transfers in a frame. The main data structure used by
248
        the host controller is the endpoint descriptor (ED) to which
248
        the host controller is the endpoint descriptor (ED) to which
249
        aqueue of transfer descriptors (TDs) is attached. The ED
249
        a queue of transfer descriptors (TDs) is attached. The ED
250
        contains the maximum packet size allowed for an endpoint and
250
        contains the maximum packet size allowed for an endpoint and
251
        the controller hardware does the splitting into packets. The
251
        the controller hardware does the splitting into packets. The
252
        pointers to the data buffers are updated after each transfer
252
        pointers to the data buffers are updated after each transfer

Return to bug 149193