#include #include #include #include #include #define BUFSZ 256 #define SERVICE "daytime" main(argc, argv) int argc; char **argv; { int s, n, len; char buf[BUFSZ]; struct hostent *hp; struct servent *sp; struct sockaddr_in sin; /* * Get a datagram socket in the Internet * domain. */ if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0) { perror("socket"); exit(1); } /* * Look up the port number of the service. */ if ((sp = getservbyname(SERVICE, "udp")) == NULL) { fprintf(stderr, "%s/udp: unknown service.\n", SERVICE); exit(1); } /* * For each host on the command line... */ while (--argc) { /* * Look up the network number of * the host. */ if ((hp = gethostbyname(*++argv)) == NULL) { fprintf(stderr, "%s: host unknown.\n", *argv); continue; } /* * Build the address of the server on * the remote machine. */ sin.sin_family = AF_INET; sin.sin_port = sp->s_port; bcopy(hp->h_addr, &sin.sin_addr, hp->h_length); /* * Print the name of the host. */ printf("%s: ", *argv); fflush(stdout); /* * Send a datagram to the server. */ if (sendto(s, buf, BUFSZ, 0, &sin, sizeof(sin)) < 0) { perror("sendto"); continue; } /* * Receive a datagram back. */ len = sizeof(sin); n = recvfrom(s, buf, sizeof(buf), 0, &sin, &len); if (n < 0) { perror("recvfrom"); continue; } /* * Print the datagram. */ buf[n] = NULL; printf("%s\n", buf); } close(s); exit(0); } class='active' href='/cgit.cgi/linux/net-next.git/commit/include/trace/events/tlb.h?id=3f5c34c6d4688b3b7e1dbc7bbc68a2f03a0d6b0c'>commitdiff
diff options
context:
space:
mode:
authorManuel Lauss <manuel.lauss@gmail.com>2017-01-24 10:12:00 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2017-01-24 10:27:34 -0800
commit3f5c34c6d4688b3b7e1dbc7bbc68a2f03a0d6b0c (patch)
treeb9387d85890c4466d9cf3d3145c95e0b07235234 /include/trace/events/tlb.h
parent62ed8ceda1699acae01b666497f004bfd3d67a6f (diff)
Input: wm97xx - make missing platform data non-fatal
Commit 6480af4915d6 ("power_supply: wm97xx_battery: use power_supply_get_drvdata") made wm97xx platform data mandatory, although it's still optional. This patch fixes an oops during driver probe on one of my MIPS boards with a wm9712. Signed-off-by: Manuel Lauss <manuel.lauss@gmail.com> Reviewed-by: Robert Jarzmik <robert.jarzmik@free.fr> Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'include/trace/events/tlb.h')