1<html><head><meta http-equiv="Content-Type" content="text/html; charset=ANSI_X3.4-1968"><title>list_cut_position</title><meta name="generator" content="DocBook XSL Stylesheets V1.78.1"><link rel="home" href="index.html" title="The Linux Kernel API"><link rel="up" href="adt.html#idp1119950572" title="Doubly Linked Lists"><link rel="prev" href="API-list-is-singular.html" title="list_is_singular"><link rel="next" href="API-list-splice.html" title="list_splice"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center"><span class="phrase">list_cut_position</span></th></tr><tr><td width="20%" align="left"><a accesskey="p" href="API-list-is-singular.html">Prev</a> </td><th width="60%" align="center">Doubly Linked Lists</th><td width="20%" align="right"> <a accesskey="n" href="API-list-splice.html">Next</a></td></tr></table><hr></div><div class="refentry"><a name="API-list-cut-position"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>list_cut_position — 2 cut a list into two 3 </p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><div class="funcsynopsis"><table border="0" class="funcprototype-table" summary="Function synopsis" style="cellspacing: 0; cellpadding: 0;"><tr><td><code class="funcdef">void <b class="fsfunc">list_cut_position </b>(</code></td><td>struct list_head * <var class="pdparam">list</var>, </td></tr><tr><td> </td><td>struct list_head * <var class="pdparam">head</var>, </td></tr><tr><td> </td><td>struct list_head * <var class="pdparam">entry</var><code>)</code>;</td></tr></table><div class="funcprototype-spacer"> </div></div></div><div class="refsect1"><a name="idp1122287492"></a><h2>Arguments</h2><div class="variablelist"><dl class="variablelist"><dt><span class="term"><em class="parameter"><code>list</code></em></span></dt><dd><p> 4 a new list to add all removed entries 5 </p></dd><dt><span class="term"><em class="parameter"><code>head</code></em></span></dt><dd><p> 6 a list with entries 7 </p></dd><dt><span class="term"><em class="parameter"><code>entry</code></em></span></dt><dd><p> 8 an entry within head, could be the head itself 9 and if so we won't cut the list 10 </p></dd></dl></div></div><div class="refsect1"><a name="idp1122291084"></a><h2>Description</h2><p> 11 This helper moves the initial part of <em class="parameter"><code>head</code></em>, up to and 12 including <em class="parameter"><code>entry</code></em>, from <em class="parameter"><code>head</code></em> to <em class="parameter"><code>list</code></em>. You should 13 pass on <em class="parameter"><code>entry</code></em> an element you know is on <em class="parameter"><code>head</code></em>. <em class="parameter"><code>list</code></em> 14 should be an empty list or a list you do not care about 15 losing its data. 16</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="API-list-is-singular.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="adt.html#idp1119950572">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="API-list-splice.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"><span class="phrase">list_is_singular</span> </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> <span class="phrase">list_splice</span></td></tr></table></div></body></html> 17