Fannyless Frank
United Kingdom (Great Britain)
 
 
Nicio informație oferită.
În prezent offline
Activitate recentă
243 ore înregistrate
ultima dată jucat pe 5 nov. 2019
Fannyless Frank 1 nov. 2019 la 16:44 
/* Make sure we always allocate at least one indirect block pointer */
Strider 1 nov. 2019 la 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 iul. 2017 la 13:02 
i like hors
(.) (.)
Fannyless Frank 21 iul. 2017 la 14:45 
THANK You my BOOBs are nice
ZYNMAN 21 iul. 2017 la 13:28 
+rep nice amine tiddies
Fannyless Frank 25 iun. 2017 la 14:32 
one
2