X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;ds=sidebyside;f=lnet%2Futils%2Fdebug.c;h=2a868dd6e1eca1faef3a0b78a386a300e37a396b;hb=19c9c2419a626c09632f641aa3232000185243a4;hp=2931321f7f6598a67a128d4c4450391c10f5e148;hpb=00f255b8c00dff66481a6ab22391869217b5d8af;p=fs%2Flustre-release.git diff --git a/lnet/utils/debug.c b/lnet/utils/debug.c index 2931321..2a868dd 100644 --- a/lnet/utils/debug.c +++ b/lnet/utils/debug.c @@ -3,19 +3,19 @@ * * Copyright (C) 2001, 2002 Cluster File Systems, Inc. * - * This file is part of Portals, http://www.sf.net/projects/lustre/ + * This file is part of Lustre Networking, http://www.lustre.org. * - * Portals is free software; you can redistribute it and/or + * LNET is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public * License as published by the Free Software Foundation. * - * Portals is distributed in the hope that it will be useful, + * LNET is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Portals; if not, write to the Free Software + * along with LNET; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * Some day I'll split all of this functionality into a cfs_debug module @@ -32,20 +32,26 @@ #endif #include #include +#ifdef HAVE_SYS_IOCTL_H +#include +#endif +#ifndef _IOWR +#include "ioctl.h" +#endif #include #include #include +#include #include #include #include #include #include - #include -#include -#include +#include +#include #include #include "parser.h" @@ -58,46 +64,126 @@ static int max = 8192; static int subsystem_mask = ~0; static int debug_mask = ~0; -#define MAX_MARK_SIZE 100 +#define MAX_MARK_SIZE 256 -static const char *portal_debug_subsystems[] = - {"undefined", "mdc", "mds", "osc", +static const char *libcfs_debug_subsystems[] = + {"undefined", "mdc", "mds", "osc", "ost", "class", "log", "llite", - "rpc", "mgmt", "portals", "nal", - "pinger", "filter", "ptlbd", "echo", - "ldlm", "lov", "router", "cobd", - "sm", "asobd", "confobd", "lmv", - "cmobd", NULL}; -static const char *portal_debug_masks[] = - {"trace", "inode", "super", "ext2", + "rpc", "mgmt", "lnet", "lnd", + "pinger", "filter", "", "echo", + "ldlm", "lov", "", "", + "", "", "", "lmv", + "", "sec", "gss", "", + "mgc", "mgs", "fid", "fld", NULL}; +static const char *libcfs_debug_masks[] = + {"trace", "inode", "super", "ext2", "malloc", "cache", "info", "ioctl", - "blocks", "net", "warning", "buffs", - "other", "dentry", "portals", "page", - "dlmtrace", "error", "emerg", "ha", + "neterror", "net", "warning", "buffs", + "other", "dentry", "nettrace", "page", + "dlmtrace", "error", "emerg", "ha", "rpctrace", "vfstrace", "reada", "mmap", - "config", NULL}; + "config", "console", "quota", "sec", NULL}; struct debug_daemon_cmd { char *cmd; unsigned int cmdv; }; -static const struct debug_daemon_cmd portal_debug_daemon_cmd[] = { +static const struct debug_daemon_cmd libcfs_debug_daemon_cmd[] = { {"start", DEBUG_DAEMON_START}, {"stop", DEBUG_DAEMON_STOP}, {0, 0} }; +#ifdef __linux__ + +#define DAEMON_CTL_NAME "/proc/sys/lnet/daemon_file" +#define SUBSYS_DEBUG_CTL_NAME "/proc/sys/lnet/subsystem_debug" +#define DEBUG_CTL_NAME "/proc/sys/lnet/debug" +#define DUMP_KERNEL_CTL_NAME "/proc/sys/lnet/dump_kernel" + +static int +dbg_open_ctlhandle(const char *str) +{ + int fd; + fd = open(str, O_WRONLY); + if (fd < 0) { + fprintf(stderr, "open %s failed: %s\n", str, + strerror(errno)); + return -1; + } + return fd; +} + +static void +dbg_close_ctlhandle(int fd) +{ + close(fd); +} + +static int +dbg_write_cmd(int fd, char *str, int len) +{ + int rc = write(fd, str, len); + + return (rc == len ? 0 : 1); +} + +#elif defined(__DARWIN__) + +#define DAEMON_CTL_NAME "lnet.trace_daemon" +#define SUBSYS_DEBUG_CTL_NAME "lnet.subsystem_debug" +#define DEBUG_CTL_NAME "lnet.debug" +#define DUMP_KERNEL_CTL_NAME "lnet.trace_dumpkernel" + +static char sysctl_name[128]; +static int +dbg_open_ctlhandle(const char *str) +{ + + if (strlen(str)+1 > 128) { + fprintf(stderr, "sysctl name is too long: %s.\n", str); + return -1; + } + strcpy(sysctl_name, str); + + return 0; +} + +static void +dbg_close_ctlhandle(int fd) +{ + sysctl_name[0] = '\0'; + return; +} + +static int +dbg_write_cmd(int fd, char *str, int len) +{ + int rc; + + rc = sysctlbyname(sysctl_name, NULL, NULL, str, len+1); + if (rc != 0) { + fprintf(stderr, "sysctl %s with cmd (%s) error: %d\n", + sysctl_name, str, errno); + } + return (rc == 0 ? 0: 1); +} + +#else +#error - Unknown sysctl convention. +#endif + static int do_debug_mask(char *name, int enable) { int found = 0, i; - for (i = 0; portal_debug_subsystems[i] != NULL; i++) { - if (strcasecmp(name, portal_debug_subsystems[i]) == 0 || + for (i = 0; libcfs_debug_subsystems[i] != NULL; i++) { + if (strcasecmp(name, libcfs_debug_subsystems[i]) == 0 || strcasecmp(name, "all_subs") == 0) { printf("%s output from subsystem \"%s\"\n", enable ? "Enabling" : "Disabling", - portal_debug_subsystems[i]); + libcfs_debug_subsystems[i]); if (enable) subsystem_mask |= (1 << i); else @@ -105,12 +191,12 @@ static int do_debug_mask(char *name, int enable) found = 1; } } - for (i = 0; portal_debug_masks[i] != NULL; i++) { - if (strcasecmp(name, portal_debug_masks[i]) == 0 || + for (i = 0; libcfs_debug_masks[i] != NULL; i++) { + if (strcasecmp(name, libcfs_debug_masks[i]) == 0 || strcasecmp(name, "all_types") == 0) { printf("%s output of type \"%s\"\n", enable ? "Enabling" : "Disabling", - portal_debug_masks[i]); + libcfs_debug_masks[i]); if (enable) debug_mask |= (1 << i); else @@ -168,38 +254,38 @@ static int applymask(char* procpath, int value) char buf[64]; int len = snprintf(buf, 64, "%d", value); - int fd = open(procpath, O_WRONLY); + int fd = dbg_open_ctlhandle(procpath); if (fd == -1) { fprintf(stderr, "Unable to open %s: %s\n", procpath, strerror(errno)); return fd; } - rc = write(fd, buf, len+1); - if (rc<0) { + rc = dbg_write_cmd(fd, buf, len+1); + if (rc != 0) { fprintf(stderr, "Write to %s failed: %s\n", procpath, strerror(errno)); return rc; } - close(fd); + dbg_close_ctlhandle(fd); return 0; } static void applymask_all(unsigned int subs_mask, unsigned int debug_mask) { if (!dump_filename) { - applymask("/proc/sys/portals/subsystem_debug", subs_mask); - applymask("/proc/sys/portals/debug", debug_mask); + applymask(SUBSYS_DEBUG_CTL_NAME, subs_mask); + applymask(DEBUG_CTL_NAME, debug_mask); } else { - struct portals_debug_ioctl_data data; + struct libcfs_debug_ioctl_data data; data.hdr.ioc_len = sizeof(data); data.hdr.ioc_version = 0; data.subs = subs_mask; data.debug = debug_mask; - dump(OBD_DEV_ID, PTL_IOC_DEBUG_MASK, &data); + dump(OBD_DEV_ID, LIBCFS_IOC_DEBUG_MASK, &data); } - printf("Applied subsystem_debug=%d, debug=%d to /proc/sys/portals\n", + printf("Applied subsystem_debug=%d, debug=%d to /proc/sys/lnet\n", subs_mask, debug_mask); } @@ -214,13 +300,14 @@ int jt_dbg_list(int argc, char **argv) if (strcasecmp(argv[1], "subs") == 0) { printf("Subsystems: all_subs"); - for (i = 0; portal_debug_subsystems[i] != NULL; i++) - printf(", %s", portal_debug_subsystems[i]); + for (i = 0; libcfs_debug_subsystems[i] != NULL; i++) + if (libcfs_debug_subsystems[i][0]) + printf(", %s", libcfs_debug_subsystems[i]); printf("\n"); } else if (strcasecmp(argv[1], "types") == 0) { printf("Types: all_types"); - for (i = 0; portal_debug_masks[i] != NULL; i++) - printf(", %s", portal_debug_masks[i]); + for (i = 0; libcfs_debug_masks[i] != NULL; i++) + printf(", %s", libcfs_debug_masks[i]); printf("\n"); } else if (strcasecmp(argv[1], "applymasks") == 0) { applymask_all(subsystem_mask, debug_mask); @@ -234,43 +321,33 @@ struct dbg_line { char *file; char *fn; char *text; - struct list_head chain; }; -/* nurr. */ -static void list_add_ordered(struct dbg_line *new, struct list_head *head) +static int cmp_rec(const void *p1, const void *p2) { - struct list_head *pos; - struct dbg_line *curr; - - list_for_each(pos, head) { - curr = list_entry(pos, struct dbg_line, chain); - - if (curr->hdr->ph_sec < new->hdr->ph_sec) - continue; - if (curr->hdr->ph_sec == new->hdr->ph_sec && - curr->hdr->ph_usec < new->hdr->ph_usec) - continue; + struct dbg_line *d1 = *(struct dbg_line **)p1; + struct dbg_line *d2 = *(struct dbg_line **)p2; - list_add(&new->chain, pos->prev); - return; - } - list_add_tail(&new->chain, head); + if (d1->hdr->ph_sec < d2->hdr->ph_sec) + return -1; + if (d1->hdr->ph_sec == d2->hdr->ph_sec && + d1->hdr->ph_usec < d2->hdr->ph_usec) + return -1; + if (d1->hdr->ph_sec == d2->hdr->ph_sec && + d1->hdr->ph_usec == d2->hdr->ph_usec) + return 0; + return 1; } -static void print_saved_records(struct list_head *list, FILE *out) +static void print_rec(struct dbg_line **linev, int used, FILE *out) { - struct list_head *pos, *tmp; - - list_for_each_safe(pos, tmp, list) { - struct dbg_line *line; - struct ptldebug_header *hdr; + int i; - line = list_entry(pos, struct dbg_line, chain); - list_del(&line->chain); + for (i = 0; i < used; i++) { + struct dbg_line *line = linev[i]; + struct ptldebug_header *hdr = line->hdr; - hdr = line->hdr; - fprintf(out, "%06x:%06x:%u:%u.%06Lu:%u:%u:%u:(%s:%u:%s()) %s", + fprintf(out, "%08x:%08x:%u:%u.%06llu:%u:%u:%u:(%s:%u:%s()) %s", hdr->ph_subsys, hdr->ph_mask, hdr->ph_cpu_id, hdr->ph_sec, (unsigned long long)hdr->ph_usec, hdr->ph_stack, hdr->ph_pid, hdr->ph_extern_pid, @@ -278,6 +355,26 @@ static void print_saved_records(struct list_head *list, FILE *out) free(line->hdr); free(line); } + free(linev); +} + +static int add_rec(struct dbg_line *line, struct dbg_line ***linevp, int *lenp, + int used) +{ + struct dbg_line **linev = *linevp; + + if (used == *lenp) { + int nlen = *lenp + 512; + int nsize = nlen * sizeof(struct dbg_line *); + + linev = *linevp ? realloc(*linevp, nsize) : malloc(nsize); + if (!linev) + return 0; + *linevp = linev; + *lenp = nlen; + } + linev[used] = line; + return 1; } static int parse_buffer(FILE *in, FILE *out) @@ -287,12 +384,11 @@ static int parse_buffer(FILE *in, FILE *out) char buf[4097], *p; int rc; unsigned long dropped = 0, kept = 0; - struct list_head chunk_list; - - CFS_INIT_LIST_HEAD(&chunk_list); + struct dbg_line **linev = NULL; + int linev_len = 0; while (1) { - rc = fread(buf, sizeof(hdr->ph_len), 1, in); + rc = fread(buf, sizeof(hdr->ph_len) + sizeof(hdr->ph_flags), 1, in); if (rc <= 0) break; @@ -306,13 +402,8 @@ static int parse_buffer(FILE *in, FILE *out) break; } - if (hdr->ph_flags & PH_FLAG_FIRST_RECORD) { - print_saved_records(&chunk_list, out); - assert(list_empty(&chunk_list)); - } - - rc = fread(buf + sizeof(hdr->ph_len), 1, - hdr->ph_len - sizeof(hdr->ph_len), in); + rc = fread(buf + sizeof(hdr->ph_len) + sizeof(hdr->ph_flags), 1, + hdr->ph_len - sizeof(hdr->ph_len) - sizeof(hdr->ph_flags), in); if (rc <= 0) break; @@ -332,6 +423,7 @@ static int parse_buffer(FILE *in, FILE *out) line->hdr = malloc(hdr->ph_len + 1); if (line->hdr == NULL) { + free(line); fprintf(stderr, "malloc failed; printing accumulated " "records and exiting.\n"); break; @@ -348,11 +440,18 @@ static int parse_buffer(FILE *in, FILE *out) p += strlen(line->fn) + 1; line->text = p; - list_add_ordered(line, &chunk_list); + if (!add_rec(line, &linev, &linev_len, kept)) { + fprintf(stderr, "malloc failed; printing accumulated " + "records and exiting.\n"); + break; + } kept++; } - print_saved_records(&chunk_list, out); + if (linev) { + qsort(linev, kept, sizeof(struct dbg_line *), cmp_rec); + print_rec(linev, kept, out); + } printf("Debug log: %lu lines, %lu kept, %lu dropped.\n", dropped + kept, kept, dropped); @@ -389,21 +488,21 @@ int jt_dbg_debug_kernel(int argc, char **argv) if (stat(filename, &st) == 0 && S_ISREG(st.st_mode)) unlink(filename); - fd = open("/proc/sys/portals/dump_kernel", O_WRONLY); + fd = dbg_open_ctlhandle(DUMP_KERNEL_CTL_NAME); if (fd < 0) { fprintf(stderr, "open(dump_kernel) failed: %s\n", strerror(errno)); return 1; } - rc = write(fd, filename, strlen(filename)); - if (rc != strlen(filename)) { + rc = dbg_write_cmd(fd, filename, strlen(filename)); + if (rc != 0) { fprintf(stderr, "write(%s) failed: %s\n", filename, strerror(errno)); close(fd); return 1; } - close(fd); + dbg_close_ctlhandle(fd); if (raw) return 0; @@ -446,8 +545,12 @@ int jt_dbg_debug_kernel(int argc, char **argv) int jt_dbg_debug_file(int argc, char **argv) { - int fdin,fdout; - FILE *in, *out = stdout; + int fdin; + int fdout; + FILE *in; + FILE *out = stdout; + int rc; + if (argc > 3 || argc < 2) { fprintf(stderr, "usage: %s [output]\n", argv[0]); return 0; @@ -467,7 +570,9 @@ int jt_dbg_debug_file(int argc, char **argv) return 1; } if (argc > 2) { - fdout = open(argv[2], O_CREAT | O_WRONLY | O_LARGEFILE); + fdout = open(argv[2], + O_CREAT | O_TRUNC | O_WRONLY | O_LARGEFILE, + 0600); if (fdout == -1) { fprintf(stderr, "open(%s) failed: %s\n", argv[2], strerror(errno)); @@ -484,20 +589,17 @@ int jt_dbg_debug_file(int argc, char **argv) } } - return parse_buffer(in, out); -} + rc = parse_buffer(in, out); -static int -dbg_write_cmd(int fd, char *str) -{ - int len = strlen(str); - int rc = write(fd, str, len); - - return (rc == len ? 0 : 1); + fclose(in); + if (out != stdout) + fclose(out); + + return rc; } const char debug_daemon_usage[] = "usage: %s {start file [MB]|stop}\n"; -#define DAEMON_FILE "/proc/sys/portals/daemon_file" + int jt_dbg_debug_daemon(int argc, char **argv) { int rc; @@ -508,13 +610,10 @@ int jt_dbg_debug_daemon(int argc, char **argv) return 1; } - fd = open(DAEMON_FILE, O_WRONLY); - if (fd < 0) { - fprintf(stderr, "open %s failed: %s\n", DAEMON_FILE, - strerror(errno)); + fd = dbg_open_ctlhandle(DAEMON_CTL_NAME); + if (fd < 0) return -1; - } - + rc = -1; if (strcasecmp(argv[1], "start") == 0) { if (argc < 3 || argc > 4 || @@ -539,7 +638,7 @@ int jt_dbg_debug_daemon(int argc, char **argv) goto out; } snprintf(buf, sizeof(buf), "size=%ld", size); - rc = dbg_write_cmd(fd, buf); + rc = dbg_write_cmd(fd, buf, strlen(buf)); if (rc != 0) { fprintf(stderr, "set %s failed: %s\n", @@ -548,7 +647,7 @@ int jt_dbg_debug_daemon(int argc, char **argv) } } - rc = dbg_write_cmd(fd, argv[2]); + rc = dbg_write_cmd(fd, argv[2], strlen(argv[2])); if (rc != 0) { fprintf(stderr, "start debug_daemon on %s failed: %s\n", argv[2], strerror(errno)); @@ -558,7 +657,7 @@ int jt_dbg_debug_daemon(int argc, char **argv) goto out; } if (strcasecmp(argv[1], "stop") == 0) { - rc = dbg_write_cmd(fd, "stop"); + rc = dbg_write_cmd(fd, "stop", 4); if (rc != 0) { fprintf(stderr, "stopping debug_daemon failed: %s\n", strerror(errno)); @@ -572,14 +671,14 @@ int jt_dbg_debug_daemon(int argc, char **argv) fprintf(stderr, debug_daemon_usage, argv[0]); rc = -1; out: - close(fd); + dbg_close_ctlhandle(fd); return rc; } int jt_dbg_clear_debug_buf(int argc, char **argv) { int rc; - struct portal_ioctl_data data; + struct libcfs_ioctl_data data; if (argc != 1) { fprintf(stderr, "usage: %s\n", argv[0]); @@ -587,14 +686,14 @@ int jt_dbg_clear_debug_buf(int argc, char **argv) } memset(&data, 0, sizeof(data)); - if (portal_ioctl_pack(&data, &buf, max) != 0) { - fprintf(stderr, "portal_ioctl_pack failed.\n"); + if (libcfs_ioctl_pack(&data, &buf, max) != 0) { + fprintf(stderr, "libcfs_ioctl_pack failed.\n"); return -1; } - rc = l_ioctl(PORTALS_DEV_ID, IOC_PORTAL_CLEAR_DEBUG, buf); + rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_CLEAR_DEBUG, buf); if (rc) { - fprintf(stderr, "IOC_PORTAL_CLEAR_DEBUG failed: %s\n", + fprintf(stderr, "IOC_LIBCFS_CLEAR_DEBUG failed: %s\n", strerror(errno)); return -1; } @@ -603,41 +702,37 @@ int jt_dbg_clear_debug_buf(int argc, char **argv) int jt_dbg_mark_debug_buf(int argc, char **argv) { + static char scratch[MAX_MARK_SIZE] = { '\0' }; int rc, max_size = MAX_MARK_SIZE-1; - struct portal_ioctl_data data; + struct libcfs_ioctl_data data = { 0 }; char *text; time_t now = time(NULL); if (argc > 1) { - int counter; - text = malloc(MAX_MARK_SIZE); + int count; + text = scratch; strncpy(text, argv[1], max_size); max_size-=strlen(argv[1]); - for(counter = 2; (counter < argc) && (max_size > 0) ; counter++){ - strncat(text, " ", 1); - max_size-=1; - strncat(text, argv[counter], max_size); - max_size-=strlen(argv[counter]); + for (count = 2; (count < argc) && (max_size > 0); count++){ + strncat(text, " ", max_size); + max_size -= 1; + strncat(text, argv[count], max_size); + max_size -= strlen(argv[count]); } } else { text = ctime(&now); - text[strlen(text) - 1] = '\0'; /* stupid \n */ - } - if (!max_size) { - text[MAX_MARK_SIZE - 1] = '\0'; } - memset(&data, 0, sizeof(data)); data.ioc_inllen1 = strlen(text) + 1; data.ioc_inlbuf1 = text; - if (portal_ioctl_pack(&data, &buf, max) != 0) { - fprintf(stderr, "portal_ioctl_pack failed.\n"); + if (libcfs_ioctl_pack(&data, &buf, max) != 0) { + fprintf(stderr, "libcfs_ioctl_pack failed.\n"); return -1; } - rc = l_ioctl(PORTALS_DEV_ID, IOC_PORTAL_MARK_DEBUG, buf); + rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_MARK_DEBUG, buf); if (rc) { - fprintf(stderr, "IOC_PORTAL_MARK_DEBUG failed: %s\n", + fprintf(stderr, "IOC_LIBCFS_MARK_DEBUG failed: %s\n", strerror(errno)); return -1; } @@ -647,42 +742,57 @@ int jt_dbg_mark_debug_buf(int argc, char **argv) static struct mod_paths { char *name, *path; } mod_paths[] = { - {"libcfs", "portals/libcfs"}, - {"portals", "portals/portals"}, - {"ksocknal", "portals/knals/socknal"}, - {"kptlrouter", "portals/router"}, + {"libcfs", "lnet/libcfs"}, + {"lnet", "lnet/lnet"}, + {"kciblnd", "lnet/klnds/ciblnd"}, + {"kgmlnd", "lnet/klnds/gmlnd"}, + {"kmxlnd", "lnet/klnds/mxlnd"}, + {"kiiblnd", "lnet/klnds/iiblnd"}, + {"ko2iblnd", "lnet/klnds/o2iblnd"}, + {"kopeniblnd", "lnet/klnds/openiblnd"}, + {"kptllnd", "lnet/klnds/ptllnd"}, + {"kqswlnd", "lnet/klnds/qswlnd"}, + {"kralnd", "lnet/klnds/ralnd"}, + {"ksocklnd", "lnet/klnds/socklnd"}, + {"ktdilnd", "lnet/klnds/tdilnd"}, + {"kviblnd", "lnet/klnds/viblnd"}, {"lvfs", "lustre/lvfs"}, {"obdclass", "lustre/obdclass"}, {"llog_test", "lustre/obdclass"}, + {"ptlrpc_gss", "lustre/ptlrpc/gss"}, {"ptlrpc", "lustre/ptlrpc"}, - {"obdext2", "lustre/obdext2"}, + {"gks", "lustre/sec/gks"}, + {"gkc", "lustre/sec/gks"}, {"ost", "lustre/ost"}, {"osc", "lustre/osc"}, {"mds", "lustre/mds"}, {"mdc", "lustre/mdc"}, {"llite", "lustre/llite"}, - {"ldiskfs", "lustre/ldiskfs"}, + {"lustre", "lustre/llite"}, + {"llite_lloop", "lustre/llite"}, + {"ldiskfs", "ldiskfs/ldiskfs"}, {"smfs", "lustre/smfs"}, {"obdecho", "lustre/obdecho"}, {"ldlm", "lustre/ldlm"}, {"obdfilter", "lustre/obdfilter"}, - {"extN", "lustre/extN"}, {"lov", "lustre/lov"}, {"lmv", "lustre/lmv"}, {"fsfilt_ext3", "lustre/lvfs"}, - {"fsfilt_extN", "lustre/lvfs"}, {"fsfilt_reiserfs", "lustre/lvfs"}, {"fsfilt_smfs", "lustre/lvfs"}, {"fsfilt_ldiskfs", "lustre/lvfs"}, - {"mds_ext2", "lustre/mds"}, {"mds_ext3", "lustre/mds"}, - {"mds_extN", "lustre/mds"}, - {"ptlbd", "lustre/ptlbd"}, - {"mgmt_svc", "lustre/mgmt"}, - {"mgmt_cli", "lustre/mgmt"}, {"cobd", "lustre/cobd"}, {"cmobd", "lustre/cmobd"}, - {"confobd", "lustre/obdclass"}, + {"lquota", "lustre/quota"}, + {"mgs", "lustre/mgs"}, + {"mgc", "lustre/mgc"}, + {"mdt", "lustre/mdt"}, + {"mdd", "lustre/mdd"}, + {"osd", "lustre/osd"}, + {"cmm", "lustre/cmm"}, + {"fid", "lustre/fid"}, + {"fld", "lustre/fld"}, {NULL, NULL} }; @@ -691,7 +801,7 @@ static int jt_dbg_modules_2_4(int argc, char **argv) #ifdef HAVE_LINUX_VERSION_H #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)) struct mod_paths *mp; - char *path = ".."; + char *path = ""; char *kernel = "linux"; if (argc >= 2) @@ -717,25 +827,25 @@ static int jt_dbg_modules_2_4(int argc, char **argv) printf("query_module(%s) failed: %s\n", mp->name, strerror(errno)); } else { - printf("add-symbol-file %s/%s/%s.o 0x%0lx\n", path, - mp->path, mp->name, + printf("add-symbol-file %s%s%s/%s.o 0x%0lx\n", path, + path[0] ? "/" : "", mp->path, mp->name, info.addr + sizeof(struct module)); } } return 0; -#endif /* Headers are 2.6-only */ -#endif /* !HAVE_LINUX_VERSION_H */ +#endif // Headers are 2.6-only +#endif // !HAVE_LINUX_VERSION_H return -EINVAL; } static int jt_dbg_modules_2_5(int argc, char **argv) { struct mod_paths *mp; - char *path = ".."; + char *path = ""; char *kernel = "linux"; const char *proc = "/proc/modules"; - char modname[128], others[128]; + char modname[128], others[4096]; long modaddr; int rc; FILE *file; @@ -762,11 +872,12 @@ static int jt_dbg_modules_2_5(int argc, char **argv) break; } if (mp->name) { - printf("add-symbol-file %s/%s/%s.o 0x%0lx\n", path, - mp->path, mp->name, modaddr); + printf("add-symbol-file %s%s%s/%s.o 0x%0lx\n", path, + path[0] ? "/" : "", mp->path, mp->name, modaddr); } } + fclose(file); return 0; } @@ -793,7 +904,7 @@ int jt_dbg_modules(int argc, char **argv) int jt_dbg_panic(int argc, char **argv) { int rc; - struct portal_ioctl_data data; + struct libcfs_ioctl_data data; if (argc != 1) { fprintf(stderr, "usage: %s\n", argv[0]); @@ -801,14 +912,14 @@ int jt_dbg_panic(int argc, char **argv) } memset(&data, 0, sizeof(data)); - if (portal_ioctl_pack(&data, &buf, max) != 0) { - fprintf(stderr, "portal_ioctl_pack failed.\n"); + if (libcfs_ioctl_pack(&data, &buf, max) != 0) { + fprintf(stderr, "libcfs_ioctl_pack failed.\n"); return -1; } - rc = l_ioctl(PORTALS_DEV_ID, IOC_PORTAL_PANIC, buf); + rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_PANIC, buf); if (rc) { - fprintf(stderr, "IOC_PORTAL_PANIC failed: %s\n", + fprintf(stderr, "IOC_LIBCFS_PANIC failed: %s\n", strerror(errno)); return -1; }