Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FMC Software Support
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
FMC Software Support
Commits
2bcf98aa
Commit
2bcf98aa
authored
4 years ago
by
Federico Vaga
Browse files
Options
Downloads
Patches
Plain Diff
lib: check mezzanine presence before EEPROM read/write
Signed-off-by:
Federico Vaga
<
federico.vaga@cern.ch
>
parent
da454cc4
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/fmc/core.h
+1
-0
1 addition, 0 deletions
lib/fmc/core.h
lib/libfmc.c
+11
-0
11 additions, 0 deletions
lib/libfmc.c
with
12 additions
and
0 deletions
lib/fmc/core.h
+
1
−
0
View file @
2bcf98aa
...
...
@@ -20,6 +20,7 @@ struct fmc_tkn;
#define __FMC_ERR_MIN 4096
enum
fmc_error_numbers
{
FMC_ERR_SLOT_NODEV
=
__FMC_ERR_MIN
,
FMC_ERR_NOPRES
,
__FMC_ERR_MAX
,
};
...
...
This diff is collapsed.
Click to expand it.
lib/libfmc.c
+
11
−
0
View file @
2bcf98aa
...
...
@@ -56,6 +56,7 @@ struct fmc_carrier {
static
const
char
*
fmc_error_string
[]
=
{
[
FMC_ERR_SLOT_NODEV
-
__FMC_ERR_MIN
]
=
"Slot number not found"
,
[
FMC_ERR_NOPRES
-
__FMC_ERR_MIN
]
=
"FMC Module not present"
,
};
/**
...
...
@@ -447,6 +448,11 @@ int fmc_slot_eeprom_read(struct fmc_tkn *tkn, unsigned int slot_n,
int
fd
;
int
ret
;
if
(
!
fmc_slot_is_present
(
tkn
,
slot_n
))
{
errno
=
FMC_ERR_NOPRES
;
return
-
1
;
}
snprintf
(
path
,
MAX_PATH_LEN
,
"/sys/class/fmc/fmc-carrier-%u/fmc-slot-%u.%u/fru_eeprom/eeprom"
,
carrier
->
id
,
carrier
->
id
,
slot_n
);
...
...
@@ -480,6 +486,11 @@ int fmc_slot_eeprom_write(struct fmc_tkn *tkn, unsigned int slot_n,
int
fd
;
int
ret
;
if
(
!
fmc_slot_is_present
(
tkn
,
slot_n
))
{
errno
=
FMC_ERR_NOPRES
;
return
-
1
;
}
snprintf
(
path
,
MAX_PATH_LEN
,
"/sys/class/fmc/fmc-carrier-%u/fmc-slot-%u.%u/fru_eeprom/eeprom"
,
carrier
->
id
,
carrier
->
id
,
slot_n
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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