search for: networx

Displaying 17 results from an estimated 17 matches for "networx".

Did you mean: network
2005 Jan 05
1
[PATCH] kinit/kinit.c
...+ 6; - } - } - - if (kinit) { + if ((kinit = get_arg(cmdc, cmdv, "kinit="))) { char *s = strrchr(kinit, '/'); if (s) { s++; } - init_argv[0] = kinit; + init_argv[0] = s; execv(kinit, init_argv); } init_argv[0] = "init"; -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://www.zytor.com/pipermail/klibc/attachments/20050105/bb97b7ab/attachment.bin
2005 Jan 05
1
[PATCH] kinit/nfsmount.c path from bootp
...th, ',')) != NULL) { + *opts++ = '\0'; + argv[a++] = (char *) "-o"; + argv[a++] = opts; + } + if ((x = strchr(path, ':')) == NULL) { if (addr.s_addr == INADDR_NONE) { fprintf(stderr, "Root-NFS: no server defined\n"); -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://www.zytor.com/pipermail/klibc/attachments/20050105/b06ad3bb/attachment.bin
2004 Oct 21
0
define more syslog flags
.../* wait for child processes (unused on linux) */ +#define LOG_PERROR 0x20 /* additional logging to stderr */ + __extern void openlog(const char *, int, int); __extern void syslog(int, const char *, ...); __extern void vsyslog(int, const char *, va_list); -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://www.zytor.com/pipermail/klibc/attachments/20041021/b088e667/attachment.bin
2004 Oct 22
1
[PATCH] off-by-one in asprintf/vasprintf
...22 12:08:23.497660496 -0600 @@ -14,10 +14,10 @@ va_copy(ap1, ap); - bytes = vsnprintf(NULL, 0, format, ap1); + bytes = vsnprintf(NULL, 0, format, ap1) + 1; va_end(ap1); - *bufp = p = malloc(bytes+1); + *bufp = p = malloc(bytes); if ( !p ) return -1; -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://www.zytor.com/pipermail/klibc/attachments/20041022/74f45458/attachment.bin
2004 Oct 25
1
chicken/egg between pipefs and initramfs/hotplug
...as this been discussed before? Is there something that userspace can wait on until pipefs is mounted or more of the kernel is initialized? I did some searching and I just can't turn up a previous discussion about this - my apologies if it's already been covered. -- Thayne Harbaugh Linux Networx
2004 Oct 25
0
[PATCH] klibc/utils/uname.c
Here's a patch to add klibc/utils/uname.c. I wrote uname.c and it can be published under the klibc copyright/left/middle/public domain/whatever. It supports all standard options except -p and -o. -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: klibc-uname.patch Type: text/x-patch Size: 4145 bytes Desc: not available Url : http://www.zytor.com/pipermail/klibc/attachments/20041025/f28bd860/klibc-uname.bin
2005 Jan 05
2
[PATCH] getopt
...ic const char *__optptr = NULL; int getopt(int argc, char * const *argv, const char *optstring) { @@ -51,6 +51,7 @@ optind += 2; } else { /* Missing argument */ + optind++; return (optstring[0] == ':') ? ':' : '?'; } } -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://www.zytor.com/pipermail/klibc/attachments/20050104/06d024a0/attachment.bin
2005 Jan 05
0
[PATCH] kinit.c:get_arg()
...1:38:30.740191320 -0700 @@ -168,7 +168,7 @@ for (i = 1; i < argc; i++) { if (argv[i] && strncmp(argv[i], name, len) == 0 && - (argv[i][len] == '\0')) { + (argv[i][len] != '\0')) { ret = argv[i] + len; break; } -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://www.zytor.com/pipermail/klibc/attachments/20050105/1ee669df/attachment.bin
2005 Jan 05
0
[PATCH] kinit/do_mounts.c:name_to_dev_t()
...if ( strncmp(name, "/dev/", 5) ) { res = (dev_t) strtoul(name, &p, 16); if (*p) return 0; @@ -111,7 +111,7 @@ } name += 5; if (strcmp(name, "nfs") == 0) - return 0; + return Root_NFS; len = strlen(name); s = alloca(len+1); -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://www.zytor.com/pipermail/klibc/attachments/20050105/6af08503/attachment.bin
2005 Jan 05
1
Status/future for klibc/initramfs
...c/hotplug/udev/kinit early userspace that just works (for me). It's taken me a bit to get things to work because I just couldn't find all the details and there were a few bugs/lacking features. Better/more documentation would have helped me (maybe I missed it?). -- Thayne Harbaugh Linux Networx
2005 Jan 06
0
[PATCH] memchr and memrchr
...y.o memcmp.o memset.o memccpy.o memmem.o memswap.o \ - memmove.o memchr.o \ + memmove.o memchr.o memrchr.o \ strcasecmp.o strncasecmp.o strndup.o strerror.o \ strcat.o strchr.o strcmp.o strcpy.o strdup.o strlen.o strnlen.o \ strncat.o strlcpy.o strlcat.o \ -- Thayne Harbaugh Linux Networx
2005 Jan 06
0
skip unconnected interfaces
...if ( !(flags & IFF_LOOPBACK) && - (flags & (IFF_BROADCAST|IFF_POINTOPOINT)) ) - { - if ( !(dev = add_device(de->d_name)) ) - continue; - bringup_one_dev(template, dev); - } + bringup_one_dev(template, dev); } closedir(d); return 1; -- Thayne Harbaugh Linux Networx
2005 Jan 06
0
[PATCH] ELF headers
.../* number of defined types. */ +#define STT_LOOS 10 /* start of OS-specific */ +#define STT_HIOS 12 /* end of OS-specific */ +#define STT_LOPROC 13 /* start of processor-specific */ +#define STT_HIPROC 15 /* end of processor-specific */ + #endif /* _SYS_ELFCOMMON_H */ -- Thayne Harbaugh Linux Networx
2008 Feb 29
0
[Fwd: [ofa-general] Announcing the release of MVAPICH 1.0]
...list. Thanks, The MVAPICH Team ====================================================================== MVAPICH/MVAPICH2 project is currently supported with funding from U.S. National Science Foundation, U.S. DOE Office of Science, Mellanox, Intel, Cisco Systems, QLogic, Sun Microsystems and Linux Networx; and with equipment support from Advanced Clustering, AMD, Appro, Chelsio, Dell, Fujitsu, Fulcrum, IBM, Intel, Mellanox, Microway, NetEffect, QLogic and Sun Microsystems. Other technology partner includes Etnus. ====================================================================== ______________...
2006 Nov 15
11
OpenSSH Certkey (PKI)
...ame the certifcate grants login to. +For host certificates, the format is not defined, though using the host's +fully-qualified domain name is suggested. + +'options' may contain additional options, in form of key=value pairs separated +by pipes '|', like 'foo=bar|src=10/8,*.networx.ch|dst=192.168/16'. keys and +values must not contain semi-colons, pipes, '=' or NUL bytes. The meaning of +options is not currently defined, though keys 'src' and 'dst' are reserved for +later implementation of restrictions based on client/server addresses. + +'vali...
2004 Sep 03
0
Can't join Domain on PDC: NT_STATUS_CANT_ACCESS_DOMAIN_INFO (PAM: 4)
Hi all, I've got the following problem when trying to join a domain on a samba pdc itself: net rpc join eccag -U root asks for password an then tells me that it cannot connect to the PDC. Winbind-log gives the following: [2004/08/31 02:29:15, 0] nsswitch/winbindd_util.c:get_trust_pw(1024) get_trust_pw: could not fetch trust account password for my domain ECCAG [2004/08/31 02:29:15, 2]
2009 Jun 29
0
DomUs don''t shutdown with cpu-pinning configured
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, since pinning the cpu cores to Dom0 and the DomUs the shutdown of the VMs doesn''t work anymore. When shutting down or rebooting a DomU the DomU just freezes after the shutdown process but won''t reboot or stop the DomU. The shutdown itself seems to be complete though. We can reproduce this problem on 4 different servers.