Re: [PATCH 5/5] Swap Migration V5: sys_migrate_pages interface

From: Andrew Morton
Date: Tue Nov 01 2005 - 00:28:20 EST


Christoph Lameter <clameter@xxxxxxx> wrote:
>
> ...
> Changes V3->V4:
> - Add Ray's permissions check based on check_kill_permission().
>
> ...
> + /*
> + * Permissions check like for signals.
> + * See check_kill_permission()
> + */
> + if ((current->euid ^ task->suid) && (current->euid ^ task->uid) &&
> + (current->uid ^ task->suid) && (current->uid ^ task->uid) &&
> + !capable(CAP_SYS_ADMIN)) {
> + err = -EPERM;
> + goto out;
> + }

Obscure. Can you please explain the thinking behind putting this check in
here? Preferably via a comment...
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/