Lines Matching full:priority
2 * lib/parman.c - Manager for linear priority array areas
237 * with the same priority. Consider following example:
248 * In this example, there are 3 priority chunks. The order of the priorities
249 * matters, however the order of items within a single priority chunk does not
261 * The goal of parman is to maintain the priority ordering. The caller
298 * parman_prio_init - initializes a parman priority chunk
301 * @prority: desired priority of the chunk
305 * Before caller could add an item with certain priority, he has to
306 * initialize a priority chunk for it using this function.
309 unsigned long priority) in parman_prio_init() argument
315 prio->priority = priority; in parman_prio_init()
317 /* Position inside the list according to priority */ in parman_prio_init()
320 if (prio2->priority > prio->priority) in parman_prio_init()
328 * parman_prio_fini - finalizes use of parman priority chunk
341 * parman_item_add - adds a parman item under defined priority
348 * Adds item to a array managed by parman instance under the specified priority.
376 MODULE_DESCRIPTION("Priority-based array manager");