You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//find space for the code -- this doesn't need to be protectable
code_start_addr = find_protectable_free(dev, type, dest->exec.code_size, &page, 0);
if ( code_start_addr == (u32)-1 ){
return SYSFS_SET_RETURN(ENOSPC);
}
The last arg of find_protectable_free() should be 1 (because files don't need to be a in protectable region) but doing that causes problems.
The text was updated successfully, but these errors were encountered:
Code snippet from
appfs_util_root_create()
The last arg of
find_protectable_free()
should be 1 (because files don't need to be a in protectable region) but doing that causes problems.The text was updated successfully, but these errors were encountered: