Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / arch / um / kernel / umid.c
blob81e07e2be3ae540abb2715ca56824f02b79c6cea
1 /*
2 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
4 */
6 #include <asm/errno.h>
7 #include "init.h"
8 #include "kern.h"
9 #include "os.h"
11 /* Changed by set_umid_arg */
12 static int umid_inited = 0;
14 static int __init set_umid_arg(char *name, int *add)
16 int err;
18 if (umid_inited) {
19 printf("umid already set\n");
20 return 0;
23 *add = 0;
24 err = set_umid(name);
25 if (err == -EEXIST)
26 printf("umid '%s' already in use\n", name);
27 else if (!err)
28 umid_inited = 1;
30 return 0;
33 __uml_setup("umid=", set_umid_arg,
34 "umid=<name>\n"
35 " This is used to assign a unique identity to this UML machine and\n"
36 " is used for naming the pid file and management console socket.\n\n"