]> git.openfabrics.org - ~shefty/ibacm.git/commitdiff
refresh
authorSean Hefty <sean.hefty@intel.com>
Thu, 29 Jul 2010 17:20:19 +0000 (10:20 -0700)
committerSean Hefty <sean.hefty@intel.com>
Thu, 29 Jul 2010 17:20:19 +0000 (10:20 -0700)
meta
patches/cfg
patches/refresh-temp [deleted file]

diff --git a/meta b/meta
index 3b1ce046b37e5d0c6afd57d5155b39ef893af30c..5077abfd246013e112aff18735a104d5b406143e 100644 (file)
--- a/meta
+++ b/meta
@@ -1,10 +1,9 @@
 Version: 1
-Previous: 722239517bb8a6818ce2be9e12d418eff1f141f6
-Head: c6735e0269e3206336b3b6295b767ce651b23677
+Previous: 94ac1f7521c4ff55045f67ee3ef95e2d897945ca
+Head: 91fd5f444591ae8691a5bcf155467d0e7c493963
 Applied:
   daemon: 32ca7dbd7bb04dabb504faa3ffe319e5f965d716
-  cfg: 411f05f6c582486ee5f4a2d48182ca6bf0e87145
-  refresh-temp: c6735e0269e3206336b3b6295b767ce651b23677
+  cfg: 91fd5f444591ae8691a5bcf155467d0e7c493963
 Unapplied:
   typo: 7a031966f6f1a9c54c3eb61aa65886c751a42da4
   log: cbe50bfc0ec5aa61f08083722d2b3d53791195a9
index 51b12fab379abd3339d2e28624e0659bc20a3082..e74eeec3f087da5cc0f4d77375fec7fd1c82fa57 100644 (file)
@@ -1,5 +1,5 @@
 Bottom: fe525ce7184567022966920e612b61d5545b2bc9
-Top:    fe525ce7184567022966920e612b61d5545b2bc9
+Top:    3d9238d760c3f6458939674d7c9d6e3cd9ccd553
 Author: Sean Hefty <sean.hefty@intel.com>
 Date:   2010-07-23 17:12:24 -0700
 
@@ -15,4 +15,208 @@ Signed-off-by: Sean Hefty <sean.hefty@intel.com>
 
 ---
 
-
+diff --git a/linux/osd.h b/linux/osd.h
+index dc8bc1f..722e1b1 100644
+--- a/linux/osd.h
++++ b/linux/osd.h
+@@ -39,11 +39,16 @@
+ #include <pthread.h>\r
+ #include <sys/socket.h>\r
+ #include <sys/types.h>\r
++#include <sys/stat.h>\r
+ #include <malloc.h>\r
+ #include <arpa/inet.h>\r
+ #include <sys/time.h>\r
+ #include <netinet/in.h>\r
\r
++#define ACM_DEST_DIR "/etc/ibacm"\r
++#define ACM_ADDR_FILE "acm_addr.cfg"\r
++#define ACM_OPTS_FILE "acm_opts.cfg"\r
++\r
+ #define LIB_DESTRUCTOR __attribute__((destructor))\r
+ #define CDECL_FUNC\r
\r
+diff --git a/src/acm.c b/src/acm.c
+index 8b09453..535a755 100644
+--- a/src/acm.c
++++ b/src/acm.c
+@@ -190,6 +190,8 @@ static struct acm_client client[FD_SETSIZE - 1];
+ static FILE *flog;
+ static lock_t log_lock;
++static char *opts_file = "/etc/ibacm/acm_opts.cfg";
++static char *addr_file = "/etc/ibacm/acm_addr.cfg";
+ static char log_file[128] = "stdout";
+ static int log_level = 0;
+ static enum acm_addr_prot addr_prot = ACM_ADDR_PROT_ACM;
+@@ -2197,7 +2199,7 @@ static int acm_assign_ep_names(struct acm_ep *ep)
+       acm_log(1, "device %s, port %d, pkey 0x%x\n",
+               dev_name, ep->port->port_num, ep->pkey);
+-      if (!(f = fopen("acm_addr.cfg", "r"))) {
++      if (!(f = fopen(addr_file, "r"))) {
+               acm_log(0, "ERROR - unable to open acm_addr.cfg file\n");
+               return ACM_STATUS_ENODATA;
+       }
+@@ -2536,7 +2538,7 @@ static void acm_set_options(void)
+       char s[120];
+       char opt[32], value[32];
+-      if (!(f = fopen("acm_opts.cfg", "r")))
++      if (!(f = fopen(opts_file, "r")))
+               return;
+       while (fgets(s, sizeof s, f)) {
+@@ -2637,7 +2639,11 @@ static void daemonize(void)
+ static void show_usage(char *program)
+ {
+       printf("usage: %s\n", program);
+-      printf("   [-D] - run as a daemon\n");
++      printf("   [-D]             - run as a daemon\n");
++      printf("   [-A addr_file]   - address configuration file\n");
++      printf("                      (default %s/%s\n", ACM_DEST_DIR, ACM_ADDR_FILE);
++      printf("   [-O option_file] - option configuration file\n");
++      printf("                      (default %s/%s\n", ACM_DEST_DIR, ACM_OPTS_FILE);
+ }
+ int CDECL_FUNC main(int argc, char **argv)
+@@ -2646,11 +2652,17 @@ int CDECL_FUNC main(int argc, char **argv)
+       int dev_cnt;
+       int op, i, daemon = 0;
+-      while ((op = getopt(argc, argv, "D")) != -1) {
++      while ((op = getopt(argc, argv, "DA:O:")) != -1) {
+               switch (op) {
+               case 'D':
+                       daemon = 1;
+                       break;
++              case 'A':
++                      addr_file = optarg;
++                      break;
++              case 'O':
++                      opts_file = optarg;
++                      break;
+               default:
+                       show_usage(argv[0]);
+                       exit(1);
+diff --git a/src/acme.c b/src/acme.c
+index 5a5a09a..03e96ad 100644
+--- a/src/acme.c
++++ b/src/acme.c
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 2009 Intel Corporation.  All rights reserved.
++ * Copyright (c) 2009-2010 Intel Corporation.  All rights reserved.
+  *
+  * This software is available to you under the OpenIB.org BSD license
+  * below:
+@@ -39,6 +39,10 @@
+ #include <infiniband/acm.h>
+ #include "libacm.h"
++static char *dest_dir = ACM_DEST_DIR;
++static char *addr_file = ACM_ADDR_FILE;
++static char *opts_file = ACM_OPTS_FILE;
++
+ static char *dest_addr;
+ static char *src_addr;
+ static char addr_type = 'i';
+@@ -60,8 +64,12 @@ static void show_usage(char *program)
+       printf("   -d dest_addr     - format defined by -f option\n");
+       printf("   [-v]             - verify ACM response against SA query response\n");
+       printf("usage 2: %s\n", program);
+-      printf("   -A               - generate local acm_addr.cfg configuration file\n");
+-      printf("   -O               - generate local acm_ops.cfg options file\n");
++      printf("   -A [addr_file]   - generate local address configuration file\n");
++      printf("                      (default is %s)\n", ACM_ADDR_FILE);
++      printf("   -O [opt_file]    - generate local acm_opts.cfg options file\n");
++      printf("                      (default is %s)\n", ACM_OPTS_FILE);
++      printf("   -D dest_dir      - specify destination directory for output files\n");
++      printf("                      (default is %s)\n", ACM_DEST_DIR);
+ }
+ static void gen_opts_temp(FILE *f)
+@@ -186,13 +194,23 @@ static void gen_opts_temp(FILE *f)
+       fprintf(f, "\n");
+ }
++static int open_dir(void)
++{
++      mkdir(dest_dir, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
++      if (chdir(dest_dir)) {
++              printf("Failed to open directory %s: %s\n", dest_dir, strerror(errno));
++              return -1;
++      }
++      return 0;
++}
++
+ static int gen_opts(void)
+ {
+       FILE *f;
+-      printf("Generating acm_opts.cfg\n");
+-      if (!(f = fopen("acm_opts.cfg", "w"))) {
+-              printf("Failed to open option configuration file\n");
++      printf("Generating %s/%s\n", dest_dir, opts_file);
++      if (open_dir() || !(f = fopen(opts_file, "w"))) {
++              printf("Failed to open option configuration file: %s\n", strerror(errno));
+               return -1;
+       }
+@@ -325,9 +343,9 @@ static int gen_addr(void)
+       FILE *f;
+       int ret;
+-      printf("Generating acm_addr.cfg\n");
+-      if (!(f = fopen("acm_addr.cfg", "w"))) {
+-              printf("Failed to open address configuration file\n");
++      printf("Generating %s/%s\n", dest_dir, addr_file);
++      if (open_dir() || !(f = fopen(addr_file, "w"))) {
++              printf("Failed to open address configuration file: %s\n", strerror(errno));
+               return -1;
+       }
+@@ -493,6 +511,17 @@ static int resolve(char *program)
+       return ret;
+ }
++char *opt_arg(int argc, char **argv)
++{
++      if (optarg)
++              return optarg;
++
++      if ((optind < argc) && (argv[optind][0] != '-'))
++              return argv[optind];
++
++      return NULL;
++}
++
+ int CDECL_FUNC main(int argc, char **argv)
+ {
+       int op, ret;
+@@ -501,7 +530,7 @@ int CDECL_FUNC main(int argc, char **argv)
+       if (ret)
+               goto out;
+-      while ((op = getopt(argc, argv, "f:s:d:vAO")) != -1) {
++      while ((op = getopt(argc, argv, "f:s:d:vA::O::D:")) != -1) {
+               switch (op) {
+               case 'f':
+                       addr_type = optarg[0];
+@@ -517,9 +546,16 @@ int CDECL_FUNC main(int argc, char **argv)
+                       break;
+               case 'A':
+                       make_addr = 1;
++                      if (opt_arg(argc, argv))
++                              addr_file = opt_arg(argc, argv);
+                       break;
+               case 'O':
+                       make_opts = 1;
++                      if (opt_arg(argc, argv))
++                              opts_file = opt_arg(argc, argv);
++                      break;
++              case 'D':
++                      dest_dir = optarg;
+                       break;
+               default:
+                       show_usage(argv[0]);
diff --git a/patches/refresh-temp b/patches/refresh-temp
deleted file mode 100644 (file)
index 90ad066..0000000
+++ /dev/null
@@ -1,214 +0,0 @@
-Bottom: fe525ce7184567022966920e612b61d5545b2bc9
-Top:    3d9238d760c3f6458939674d7c9d6e3cd9ccd553
-Author: Sean Hefty <sean.hefty@intel.com>
-Date:   2010-07-29 10:20:19 -0700
-
-Refresh of cfg
-
----
-
-diff --git a/linux/osd.h b/linux/osd.h
-index dc8bc1f..722e1b1 100644
---- a/linux/osd.h
-+++ b/linux/osd.h
-@@ -39,11 +39,16 @@
- #include <pthread.h>\r
- #include <sys/socket.h>\r
- #include <sys/types.h>\r
-+#include <sys/stat.h>\r
- #include <malloc.h>\r
- #include <arpa/inet.h>\r
- #include <sys/time.h>\r
- #include <netinet/in.h>\r
\r
-+#define ACM_DEST_DIR "/etc/ibacm"\r
-+#define ACM_ADDR_FILE "acm_addr.cfg"\r
-+#define ACM_OPTS_FILE "acm_opts.cfg"\r
-+\r
- #define LIB_DESTRUCTOR __attribute__((destructor))\r
- #define CDECL_FUNC\r
\r
-diff --git a/src/acm.c b/src/acm.c
-index 8b09453..535a755 100644
---- a/src/acm.c
-+++ b/src/acm.c
-@@ -190,6 +190,8 @@ static struct acm_client client[FD_SETSIZE - 1];
- static FILE *flog;
- static lock_t log_lock;
-+static char *opts_file = "/etc/ibacm/acm_opts.cfg";
-+static char *addr_file = "/etc/ibacm/acm_addr.cfg";
- static char log_file[128] = "stdout";
- static int log_level = 0;
- static enum acm_addr_prot addr_prot = ACM_ADDR_PROT_ACM;
-@@ -2197,7 +2199,7 @@ static int acm_assign_ep_names(struct acm_ep *ep)
-       acm_log(1, "device %s, port %d, pkey 0x%x\n",
-               dev_name, ep->port->port_num, ep->pkey);
--      if (!(f = fopen("acm_addr.cfg", "r"))) {
-+      if (!(f = fopen(addr_file, "r"))) {
-               acm_log(0, "ERROR - unable to open acm_addr.cfg file\n");
-               return ACM_STATUS_ENODATA;
-       }
-@@ -2536,7 +2538,7 @@ static void acm_set_options(void)
-       char s[120];
-       char opt[32], value[32];
--      if (!(f = fopen("acm_opts.cfg", "r")))
-+      if (!(f = fopen(opts_file, "r")))
-               return;
-       while (fgets(s, sizeof s, f)) {
-@@ -2637,7 +2639,11 @@ static void daemonize(void)
- static void show_usage(char *program)
- {
-       printf("usage: %s\n", program);
--      printf("   [-D] - run as a daemon\n");
-+      printf("   [-D]             - run as a daemon\n");
-+      printf("   [-A addr_file]   - address configuration file\n");
-+      printf("                      (default %s/%s\n", ACM_DEST_DIR, ACM_ADDR_FILE);
-+      printf("   [-O option_file] - option configuration file\n");
-+      printf("                      (default %s/%s\n", ACM_DEST_DIR, ACM_OPTS_FILE);
- }
- int CDECL_FUNC main(int argc, char **argv)
-@@ -2646,11 +2652,17 @@ int CDECL_FUNC main(int argc, char **argv)
-       int dev_cnt;
-       int op, i, daemon = 0;
--      while ((op = getopt(argc, argv, "D")) != -1) {
-+      while ((op = getopt(argc, argv, "DA:O:")) != -1) {
-               switch (op) {
-               case 'D':
-                       daemon = 1;
-                       break;
-+              case 'A':
-+                      addr_file = optarg;
-+                      break;
-+              case 'O':
-+                      opts_file = optarg;
-+                      break;
-               default:
-                       show_usage(argv[0]);
-                       exit(1);
-diff --git a/src/acme.c b/src/acme.c
-index 5a5a09a..03e96ad 100644
---- a/src/acme.c
-+++ b/src/acme.c
-@@ -1,5 +1,5 @@
- /*
-- * Copyright (c) 2009 Intel Corporation.  All rights reserved.
-+ * Copyright (c) 2009-2010 Intel Corporation.  All rights reserved.
-  *
-  * This software is available to you under the OpenIB.org BSD license
-  * below:
-@@ -39,6 +39,10 @@
- #include <infiniband/acm.h>
- #include "libacm.h"
-+static char *dest_dir = ACM_DEST_DIR;
-+static char *addr_file = ACM_ADDR_FILE;
-+static char *opts_file = ACM_OPTS_FILE;
-+
- static char *dest_addr;
- static char *src_addr;
- static char addr_type = 'i';
-@@ -60,8 +64,12 @@ static void show_usage(char *program)
-       printf("   -d dest_addr     - format defined by -f option\n");
-       printf("   [-v]             - verify ACM response against SA query response\n");
-       printf("usage 2: %s\n", program);
--      printf("   -A               - generate local acm_addr.cfg configuration file\n");
--      printf("   -O               - generate local acm_ops.cfg options file\n");
-+      printf("   -A [addr_file]   - generate local address configuration file\n");
-+      printf("                      (default is %s)\n", ACM_ADDR_FILE);
-+      printf("   -O [opt_file]    - generate local acm_opts.cfg options file\n");
-+      printf("                      (default is %s)\n", ACM_OPTS_FILE);
-+      printf("   -D dest_dir      - specify destination directory for output files\n");
-+      printf("                      (default is %s)\n", ACM_DEST_DIR);
- }
- static void gen_opts_temp(FILE *f)
-@@ -186,13 +194,23 @@ static void gen_opts_temp(FILE *f)
-       fprintf(f, "\n");
- }
-+static int open_dir(void)
-+{
-+      mkdir(dest_dir, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
-+      if (chdir(dest_dir)) {
-+              printf("Failed to open directory %s: %s\n", dest_dir, strerror(errno));
-+              return -1;
-+      }
-+      return 0;
-+}
-+
- static int gen_opts(void)
- {
-       FILE *f;
--      printf("Generating acm_opts.cfg\n");
--      if (!(f = fopen("acm_opts.cfg", "w"))) {
--              printf("Failed to open option configuration file\n");
-+      printf("Generating %s/%s\n", dest_dir, opts_file);
-+      if (open_dir() || !(f = fopen(opts_file, "w"))) {
-+              printf("Failed to open option configuration file: %s\n", strerror(errno));
-               return -1;
-       }
-@@ -325,9 +343,9 @@ static int gen_addr(void)
-       FILE *f;
-       int ret;
--      printf("Generating acm_addr.cfg\n");
--      if (!(f = fopen("acm_addr.cfg", "w"))) {
--              printf("Failed to open address configuration file\n");
-+      printf("Generating %s/%s\n", dest_dir, addr_file);
-+      if (open_dir() || !(f = fopen(addr_file, "w"))) {
-+              printf("Failed to open address configuration file: %s\n", strerror(errno));
-               return -1;
-       }
-@@ -493,6 +511,17 @@ static int resolve(char *program)
-       return ret;
- }
-+char *opt_arg(int argc, char **argv)
-+{
-+      if (optarg)
-+              return optarg;
-+
-+      if ((optind < argc) && (argv[optind][0] != '-'))
-+              return argv[optind];
-+
-+      return NULL;
-+}
-+
- int CDECL_FUNC main(int argc, char **argv)
- {
-       int op, ret;
-@@ -501,7 +530,7 @@ int CDECL_FUNC main(int argc, char **argv)
-       if (ret)
-               goto out;
--      while ((op = getopt(argc, argv, "f:s:d:vAO")) != -1) {
-+      while ((op = getopt(argc, argv, "f:s:d:vA::O::D:")) != -1) {
-               switch (op) {
-               case 'f':
-                       addr_type = optarg[0];
-@@ -517,9 +546,16 @@ int CDECL_FUNC main(int argc, char **argv)
-                       break;
-               case 'A':
-                       make_addr = 1;
-+                      if (opt_arg(argc, argv))
-+                              addr_file = opt_arg(argc, argv);
-                       break;
-               case 'O':
-                       make_opts = 1;
-+                      if (opt_arg(argc, argv))
-+                              opts_file = opt_arg(argc, argv);
-+                      break;
-+              case 'D':
-+                      dest_dir = optarg;
-                       break;
-               default:
-                       show_usage(argv[0]);