From: Pete Zaitcev <zaitcev@redhat.com>
To: Jeff Garzik <jeff@garzik.org>
Cc: Project Hail List <hail-devel@vger.kernel.org>
Subject: [Patch 1/2] tabled: return known to array
Date: Wed, 5 Aug 2009 01:32:01 -0600 [thread overview]
Message-ID: <20090805013201.30616022@redhat.com> (raw)
The .known is the array management item which has no business in
a list-managed struct. Phase 1: return it where it was. In phase 2
we will drop it from cldc_host. Then perhaps change array to a
circular list.
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
diff --git a/server/cldu.c b/server/cldu.c
index d99513c..2fc6c38 100644
--- a/server/cldu.c
+++ b/server/cldu.c
@@ -22,13 +22,18 @@
#define N_CLD 10 /* 5 * (v4+v6) */
+struct cld_host {
+ int known;
+ struct cldc_host h;
+};
+
struct cld_session {
bool forced_hosts; /* Administrator overrode default CLD */
bool sess_open;
struct cldc_udp *lib; /* library state */
int actx; /* Active host cldv[actx] */
- struct cldc_host cldv[N_CLD];
+ struct cld_host cldv[N_CLD];
struct event ev; /* Associated with fd */
char *cfname; /* /tabled-cell directory */
@@ -85,7 +90,7 @@ static int cldu_nextactive(struct cld_session *sp)
n = 0;
}
/* Full circle, end on the old actx */
- return n;
+ return sp->actx;
}
static int cldu_setcell(struct cld_session *sp, const char *thiscell)
@@ -236,11 +241,11 @@ static int cldu_set_cldc(struct cld_session *sp, int newactive)
}
sp->actx = newactive;
- hp = &sp->cldv[sp->actx];
- if (!hp->known) {
+ if (!sp->cldv[sp->actx].known) {
applog(LOG_ERR, "No CLD hosts");
goto err_addr;
}
+ hp = &sp->cldv[sp->actx].h;
rc = cldc_udp_new(hp->host, hp->port, &sp->lib);
if (rc) {
@@ -606,9 +611,9 @@ int cld_begin(const char *thishost, const char *thiscell,
*/
tmp = host_list;
while (i < N_CLD && tmp) {
- memcpy(&ses.cldv[i], tmp->data,
+ memcpy(&ses.cldv[i].h, tmp->data,
sizeof(struct cldc_host));
-
+ ses.cldv[i].known = 1;
i++;
tmp = tmp->next;
}
@@ -651,7 +656,7 @@ void cld_end(void)
if (!ses.forced_hosts) {
for (i = 0; i < N_CLD; i++) {
if (ses.cldv[i].known)
- free(ses.cldv[i].host);
+ free(ses.cldv[i].h.host);
}
}
@@ -662,7 +667,7 @@ void cld_end(void)
void cldu_add_host(const char *hostname, unsigned int port)
{
static struct cld_session *sp = &ses;
- struct cldc_host *hp;
+ struct cld_host *hp;
int i;
for (i = 0; i < N_CLD; i++) {
@@ -673,7 +678,7 @@ void cldu_add_host(const char *hostname, unsigned int port)
if (i >= N_CLD)
return;
- if (cldc_saveaddr(hp, 100, 100, port, strlen(hostname), hostname,
+ if (cldc_saveaddr(&hp->h, 100, 100, port, strlen(hostname), hostname,
debugging, cldu_p_log))
return;
hp->known = 1;
next reply other threads:[~2009-08-05 7:32 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-05 7:32 Pete Zaitcev [this message]
2009-08-05 9:02 ` [Patch 1/2] tabled: return known to array Jeff Garzik
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090805013201.30616022@redhat.com \
--to=zaitcev@redhat.com \
--cc=hail-devel@vger.kernel.org \
--cc=jeff@garzik.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.