Skip to content
Snippets Groups Projects
Commit 77813ab1 authored by Danny Auble's avatar Danny Auble
Browse files

once again a change we have to make to the accounting api

parent e778ef23
No related branches found
No related tags found
No related merge requests found
...@@ -1219,6 +1219,7 @@ extern void pack_acct_cluster_cond(void *in, Buf buffer) ...@@ -1219,6 +1219,7 @@ extern void pack_acct_cluster_cond(void *in, Buf buffer)
} }
list_iterator_destroy(itr); list_iterator_destroy(itr);
} }
pack16((uint16_t)object->with_usage, buffer);
} }
extern int unpack_acct_cluster_cond(void **object, Buf buffer) extern int unpack_acct_cluster_cond(void **object, Buf buffer)
...@@ -1238,6 +1239,7 @@ extern int unpack_acct_cluster_cond(void **object, Buf buffer) ...@@ -1238,6 +1239,7 @@ extern int unpack_acct_cluster_cond(void **object, Buf buffer)
list_append(object_ptr->cluster_list, tmp_info); list_append(object_ptr->cluster_list, tmp_info);
} }
} }
safe_unpack16((uint16_t *)&object_ptr->with_usage, buffer);
return SLURM_SUCCESS; return SLURM_SUCCESS;
...@@ -1267,6 +1269,7 @@ extern void pack_acct_association_cond(void *in, Buf buffer) ...@@ -1267,6 +1269,7 @@ extern void pack_acct_association_cond(void *in, Buf buffer)
pack32(0, buffer); pack32(0, buffer);
packnull(buffer); packnull(buffer);
pack32(0, buffer); pack32(0, buffer);
pack16(0, buffer);
return; return;
} }
...@@ -1342,6 +1345,8 @@ extern void pack_acct_association_cond(void *in, Buf buffer) ...@@ -1342,6 +1345,8 @@ extern void pack_acct_association_cond(void *in, Buf buffer)
list_iterator_destroy(itr); list_iterator_destroy(itr);
} }
count = 0; count = 0;
pack16((uint16_t)object->with_usage, buffer);
} }
extern int unpack_acct_association_cond(void **object, Buf buffer) extern int unpack_acct_association_cond(void **object, Buf buffer)
...@@ -1407,6 +1412,7 @@ extern int unpack_acct_association_cond(void **object, Buf buffer) ...@@ -1407,6 +1412,7 @@ extern int unpack_acct_association_cond(void **object, Buf buffer)
} }
} }
safe_unpack16(&object_ptr->with_usage, buffer);
return SLURM_SUCCESS; return SLURM_SUCCESS;
unpack_error: unpack_error:
......
...@@ -88,6 +88,7 @@ typedef struct { ...@@ -88,6 +88,7 @@ typedef struct {
List partition_list; /* list of char * */ List partition_list; /* list of char * */
char *parent_acct; /* name of parent account */ char *parent_acct; /* name of parent account */
List user_list; /* list of char * */ List user_list; /* list of char * */
uint16_t with_usage;
} acct_association_cond_t; } acct_association_cond_t;
typedef struct { typedef struct {
...@@ -143,6 +144,7 @@ typedef struct acct_association_rec { ...@@ -143,6 +144,7 @@ typedef struct acct_association_rec {
typedef struct { typedef struct {
List cluster_list; /* list of char * */ List cluster_list; /* list of char * */
uint16_t with_usage;
} acct_cluster_cond_t; } acct_cluster_cond_t;
typedef struct { typedef struct {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment