Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
77813ab1
Commit
77813ab1
authored
16 years ago
by
Danny Auble
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/common/slurm_accounting_storage.c
+6
-0
6 additions, 0 deletions
src/common/slurm_accounting_storage.c
src/common/slurm_accounting_storage.h
+2
-0
2 additions, 0 deletions
src/common/slurm_accounting_storage.h
with
8 additions
and
0 deletions
src/common/slurm_accounting_storage.c
+
6
−
0
View file @
77813ab1
...
@@ -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:
...
...
This diff is collapsed.
Click to expand it.
src/common/slurm_accounting_storage.h
+
2
−
0
View file @
77813ab1
...
@@ -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
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment