Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2455 → Rev 2456

/branches/rcu/kernel/generic/include/ddi/irq.h
145,7 → 145,7
void *arg;
 
/** Notification configuration structure. */
ipc_notif_cfg_t notif_cfg;
ipc_notif_cfg_t* notif_cfg;
} irq_t;
 
extern void irq_init(count_t inrs, count_t chains);
/branches/rcu/kernel/generic/include/adt/listrcu.h
0,0 → 1,152
/*
* Copyright (c) 2001-2004 Jakub Jermar
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* - The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup genericadt
* @{
*/
/** @file listrcu.h
* @brief provides macro definitions for use with the RCU. Macros take care of memory barriers.
*/
 
#ifndef KERN_LISTRCU_H_
#define KERN_LISTRCU_H_
 
#include <arch/types.h>
#include <adt/list.h>
#include <synch/rcu.h>
 
 
/** Add item to the beginning of doubly-linked circular list. Emits write barriers.
*
* Add item to the beginning of doubly-linked circular list.
*
* @param link Pointer to link_t structure to be added.
* @param head Pointer to link_t structure representing head of the list.
*/
static inline void list_prepend_rcu(link_t *link, link_t *head)
{
rcu_assign_pointer(link->next,head->next);
link->prev = head;
head->next->prev = link;
rcu_assign_pointer(head->next,link);
}
 
/** Add item to the end of doubly-linked circular list
*
* Add item to the end of doubly-linked circular list.
*
* @param link Pointer to link_t structure to be added.
* @param head Pointer to link_t structure representing head of the list.
*/
static inline void list_append_rcu(link_t *link, link_t *head)
{
link->prev = head->prev;
rcu_assign_pointer(link->next,head);
rcu_assign_pointer(head->prev->next,link);
head->prev = link;
}
 
/** Remove item from doubly-linked circular list
*
* Remove item from doubly-linked circular list.
*
* @param link Pointer to link_t structure to be removed from the list it is
* contained in.
*/
static inline void list_remove_rcu(link_t *link)
{
link->next->prev = link->prev;
rcu_assign_pointer(link->prev->next,link->next);
link_initialize(link);
}
 
 
 
/** Split or concatenate headless doubly-linked circular list
*
* Split or concatenate headless doubly-linked circular list.
*
* Note that the algorithm works both directions:
* concatenates splitted lists and splits concatenated lists.
*
* @param part1 Pointer to link_t structure leading the first (half of the
* headless) list.
* @param part2 Pointer to link_t structure leading the second (half of the
* headless) list.
*/
static inline void headless_list_split_or_concat_rcu(link_t *part1, link_t *part2)
{
link_t *hlp;
 
rcu_assign_pointer(part1->prev->next,part2);
rcu_assign_pointer(part2->prev->next,part1);
hlp = part1->prev;
part1->prev = part2->prev;
part2->prev = hlp;
}
 
 
/** Split headless doubly-linked circular list
*
* Split headless doubly-linked circular list.
*
* @param part1 Pointer to link_t structure leading the first half of the
* headless list.
* @param part2 Pointer to link_t structure leading the second half of the
* headless list.
*/
static inline void headless_list_split_rcu(link_t *part1, link_t *part2)
{
headless_list_split_or_concat_rcu(part1, part2);
}
 
/** Concatenate two headless doubly-linked circular lists
*
* Concatenate two headless doubly-linked circular lists.
*
* @param part1 Pointer to link_t structure leading the first headless list.
* @param part2 Pointer to link_t structure leading the second headless list.
*/
static inline void headless_list_concat_rcu(link_t *part1, link_t *part2)
{
headless_list_split_or_concat_rcu(part1, part2);
}
 
/** Copy the link structure */
void copy_link_rcu(link_t * src, link_t* dest);
 
#define list_get_instance(link,type,member) \
((type *)(((uint8_t *)(link)) - ((uint8_t *)&(((type *)NULL)->member))))
 
extern bool list_member_rcu(const link_t *link, const link_t *head);
extern void list_concat_rcu(link_t *head1, link_t *head2);
 
#endif
 
/** @}
*/
/branches/rcu/kernel/generic/include/ipc/irq.h
50,6 → 50,8
extern void ipc_irq_unregister(answerbox_t *box, inr_t inr, devno_t devno);
extern void ipc_irq_cleanup(answerbox_t *box);
 
extern void ipc_notif_free_callback(void* notif);
 
#endif
 
/** @}