]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/man/default_pager_add_segment.html
xnu-2422.1.72.tar.gz
[apple/xnu.git] / osfmk / man / default_pager_add_segment.html
old mode 100755 (executable)
new mode 100644 (file)
index ad7028b..e214d00
@@ -1 +1,80 @@
-<h2>default_pager_add_segment</h2>\r<hr>\r<p>\r<strong>Server Interface</strong> - Add additional backing storage for a default pager.\r<h3>SYNOPSIS</h3>\r<pre>\r<strong>#include&lt mach/default_pager_object.h&gt</strong>\r\r<strong>kern_return_t   default_pager_add_segment</strong>\r                <strong>(mach_port_t</strong>                      <var>backing_store</var>,\r                 <strong>mach_port_t</strong>                             <var>device</var>,\r                 <strong>recnum_t</strong>                                <var>offset</var>,\r                 <strong>recnum_t</strong>                                 <var>count</var>,\r                 <strong>int</strong>                                <var>record_size</var><strong>);</strong>\r</pre>\r<h3>PARAMETERS</h3>\r<dl>\r<p>\r<dt> <var>backing_store</var>\r<dd>\r[in backing store (receive) right] The backing store port.\r<p>\r<dt> <var>device</var>\r<dd>\r[in device port] The port for the device containing the backing storage \rpartition.\r<p>\r<dt> <var>offset</var>\r<dd>\r[in scalar] The offset, in <var>record_size units</var>, to the beginning of the\rbacking storage on the device.\r<p>\r<dt> <var>count</var>\r<dd>\r[in scalar] The number of <var>record_size</var> units\rin the partition/segment.\r<p>\r<dt> <var>record_size</var>\r<dd>\r[in scalar] The size, in bytes, of the storage device record.\r</dl>\r<h3>DESCRIPTION</h3>\r<p>\rThe <strong>default_pager_add_segment</strong> function is called to add a partition to\ra default pager's backing storage (i.e. expand the amount of backing\rstorage available to a memory manager). The kernel does not make\rthis call itself (which is why it can be a synchronous call); this\rrequest is only issued by tasks holding the backing store port,\rcreated with <strong>default_pager_backing_store_create</strong>, for a default memory\rmanager.\rThe result is that the pager may use count records on device starting\rat offset for paging, and each record is record_size bytes in length\r(note that the device_* calls are, or can be, record oriented).\r<h3>RETURN VALUES</h3>\r<dl>\r<p>\r<dt> <strong>KERN_FAILURE</strong>\r<dd>\rThe default pager does not support this operation.\r<p>\r<dt> <strong>KERN_INVALID_ARGUMENT</strong>\r<dd>\rThe <var>backing_store</var> port does not represent a valid backing store or the \rspecified segment overlaps an existing partition.\r<p>\r<dt> <strong>KERN_RESOURCE_SHORTAGE</strong>\r<dd>\rThe default pager is unable to allocate internal resources\r     to manage the new backing storage.\r<p>\r<dt> <strong>KERN_SUCCESS</strong>\r<dd>\rThe operation was successful.\r</dl>\r<h3>RELATED INFORMATION</h3>\r<p>\rFunctions:\r<a href="DP_backing_store_create.html"><strong>default_pager_backing_store_create</strong></a>,\r<a href="DP_backing_store_delete.html"><strong>default_pager_backing_store_delete</strong></a>,\r<a href="DP_backing_store_info.html"><strong>default_pager_backing_store_info</strong></a>.\r
\ No newline at end of file
+<h2>default_pager_add_segment</h2>
+<hr>
+<p>
+<strong>Server Interface</strong> - Add additional backing storage for a default pager.
+<h3>SYNOPSIS</h3>
+<pre>
+<strong>#include&lt mach/default_pager_object.h&gt</strong>
+
+<strong>kern_return_t   default_pager_add_segment</strong>
+                <strong>(mach_port_t</strong>                      <var>backing_store</var>,
+                 <strong>mach_port_t</strong>                             <var>device</var>,
+                 <strong>recnum_t</strong>                                <var>offset</var>,
+                 <strong>recnum_t</strong>                                 <var>count</var>,
+                 <strong>int</strong>                                <var>record_size</var><strong>);</strong>
+</pre>
+<h3>PARAMETERS</h3>
+<dl>
+<p>
+<dt> <var>backing_store</var>
+<dd>
+[in backing store (receive) right] The backing store port.
+<p>
+<dt> <var>device</var>
+<dd>
+[in device port] The port for the device containing the backing storage 
+partition.
+<p>
+<dt> <var>offset</var>
+<dd>
+[in scalar] The offset, in <var>record_size units</var>, to the beginning of the
+backing storage on the device.
+<p>
+<dt> <var>count</var>
+<dd>
+[in scalar] The number of <var>record_size</var> units
+in the partition/segment.
+<p>
+<dt> <var>record_size</var>
+<dd>
+[in scalar] The size, in bytes, of the storage device record.
+</dl>
+<h3>DESCRIPTION</h3>
+<p>
+The <strong>default_pager_add_segment</strong> function is called to add a partition to
+a default pager's backing storage (i.e. expand the amount of backing
+storage available to a memory manager). The kernel does not make
+this call itself (which is why it can be a synchronous call); this
+request is only issued by tasks holding the backing store port,
+created with <strong>default_pager_backing_store_create</strong>, for a default memory
+manager.
+The result is that the pager may use count records on device starting
+at offset for paging, and each record is record_size bytes in length
+(note that the device_* calls are, or can be, record oriented).
+<h3>RETURN VALUES</h3>
+<dl>
+<p>
+<dt> <strong>KERN_FAILURE</strong>
+<dd>
+The default pager does not support this operation.
+<p>
+<dt> <strong>KERN_INVALID_ARGUMENT</strong>
+<dd>
+The <var>backing_store</var> port does not represent a valid backing store or the 
+specified segment overlaps an existing partition.
+<p>
+<dt> <strong>KERN_RESOURCE_SHORTAGE</strong>
+<dd>
+The default pager is unable to allocate internal resources
+     to manage the new backing storage.
+<p>
+<dt> <strong>KERN_SUCCESS</strong>
+<dd>
+The operation was successful.
+</dl>
+<h3>RELATED INFORMATION</h3>
+<p>
+Functions:
+<a href="DP_backing_store_create.html"><strong>default_pager_backing_store_create</strong></a>,
+<a href="DP_backing_store_delete.html"><strong>default_pager_backing_store_delete</strong></a>,
+<a href="DP_backing_store_info.html"><strong>default_pager_backing_store_info</strong></a>.