1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /*
- * Copyright (c) 2022 Agustina Arzille.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * Kernel unique-id (KUID) management.
- */
- #ifndef KERN_KUID_H
- #define KERN_KUID_H
- #include <stdint.h>
- #include <kern/init.h>
- struct kuid_head
- {
- uint32_t id;
- size_t nr_refs;
- };
- static inline void
- kuid_head_init (struct kuid_head *head)
- {
- head->id = 0;
- head->nr_refs = 1;
- }
- // Allocate a KUID, making sure the value doesn't surpass MAX_ID.
- int kuid_alloc (struct kuid_head *head, uint32_t max_id);
- // Find the kuid structure that matches a numeric ID.
- struct kuid_head* kuid_find (uint32_t id);
- // Remove a previously allocated KUID.
- int kuid_remove (struct kuid_head *kuid);
- // Helper for types that embed a kuid structure.
- #define kuid_find_type(id, type, member) \
- ({ \
- _Auto head_ = kuid_find (id); \
- head_ ? structof (head_, type, member) : 0; \
- })
- /*
- * This init operation provides :
- * - KUID management operational.
- *
- * Contended locking may only occur after starting APs.
- */
- INIT_OP_DECLARE (kuid_setup);
- #endif
|