Skip to content

Small module to extend memory allocation and release in kernel space

License

Notifications You must be signed in to change notification settings

athonet-open/slab-PDC

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

slab-PDC

Copyright

Authors: Paolo Missiaggia, [email protected]

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation.

Copyright (C) 2016-2017 - Paolo Missiaggia - All Rights Reserved

About

SLAB-PDC, a memory allocator with pre-distruction callback (PDC).

Allow to call a pre-distructor function before actually freeing memory.

Tech info

Requirements: The first 2 element of the returned struct SHALL be:

  • "struct rcu_head"
  • "pdc_func_f"

E.g.:

struct foo {
   struct rcu_head rcu;
   pdc_func_f pdc_func;
   int foo1;
};

or:

struct foo {
   pdc_t kobj;
   int foo1;
};

AAA: Do not perform non atomic actions inside "pdc_func" AAA: The pdc_func SHALL not free the memory itself

About

Small module to extend memory allocation and release in kernel space

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Makefile 60.9%
  • C 26.4%
  • Shell 12.7%