Remove legacy MM, FS, and FS_PROC_NR macros

This commit is contained in:
Arun Thomas
2010-06-08 13:58:01 +00:00
parent 7bd7946346
commit 4c10a31440
114 changed files with 152 additions and 155 deletions

View File

@@ -181,10 +181,10 @@ endpoint_t *e_granter; /* new granter (magic grants) */
/* Currently, it is hardcoded that only FS may do
* magic grants.
*/
if(granter != FS_PROC_NR) {
if(granter != VFS_PROC_NR) {
printf(
"verify_grant: magic grant verify failed: granter (%d) "
"is not FS (%d)\n", granter, FS_PROC_NR);
"is not FS (%d)\n", granter, VFS_PROC_NR);
return EPERM;
}