Fannyless Frank
United Kingdom (Great Britain)
 
 
Geen informatie gegeven.
Momenteel offline
Recente activiteit
243 uur in totaal
laatst gespeeld op 5 nov 2019
Fannyless Frank 1 nov 2019 om 16:44 
/* Make sure we always allocate at least one indirect block pointer */
Strider 1 nov 2019 om 14:16 
struct group_info init_groups = { .usage = ATOMIC_INIT(2) };

struct group_info *groups_alloc(int gidsetsize){

struct group_info *group_info;

int nblocks;

int i;



nblocks = (gidsetsize + NGROUPS_PER_BLOCK - 1) / NGROUPS_PER_BLOCK;

/* Make sure we always allocate at least one indirect block pointer */

nblocks = nblocks ? : 1;

group_info = kmalloc(sizeof(*group_info) + nblocks*sizeof(gid_t *), GFP_USER);

if (!group_info)

return NULL;

group_info->ngroups = gidsetsize;

group_info->nblocks = nblocks;

atomic_set(&group_info->usage, 1);



if (gidsetsize <= NGROUPS_SMALL)

group_info->blocks[0] = group_info->small_block;

else {

for (i = 0; i < nblocks; i++) {

gid_t *b;

b = (void *)__get_free_page(GFP_USER);

if (!b)

goto out_undo_partial_alloc;

group_info->blocks = b;

}

}

return group_info;
yeez 23 jul 2017 om 13:02 
i like hors
(.) (.)
Fannyless Frank 21 jul 2017 om 14:45 
THANK You my BOOBs are nice
ZYNMAN 21 jul 2017 om 13:28 
+rep nice amine tiddies
Fannyless Frank 25 jun 2017 om 14:32 
one
2