Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Simple PCIe FMC carrier SPEC
Manage
Activity
Members
Labels
Plan
Issues
50
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Simple PCIe FMC carrier SPEC
Commits
005e1bf9
Commit
005e1bf9
authored
5 years ago
by
Federico Vaga
Browse files
Options
Downloads
Plain Diff
Merge branch 'release/v1.4.8'
parents
3fe0d249
92abf5fd
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.rst
+6
-0
6 additions, 0 deletions
CHANGELOG.rst
software/kernel/spec-core.c
+11
-2
11 additions, 2 deletions
software/kernel/spec-core.c
with
17 additions
and
2 deletions
CHANGELOG.rst
+
6
−
0
View file @
005e1bf9
...
...
@@ -2,6 +2,12 @@
Changelog
=========
[1.4.8] 2020-02-12
==================
Fixed
-----
- [sw] fix kernel crash when programming new bitstream
[1.4.7] 2020-01-15
==================
Fixed
...
...
This diff is collapsed.
Click to expand it.
software/kernel/spec-core.c
+
11
−
2
View file @
005e1bf9
...
...
@@ -64,17 +64,26 @@ static const struct file_operations spec_irq_dbg_info_ops = {
.
release
=
single_release
,
};
#define SPEC_DBG_FW_BUF_LEN 128
static
ssize_t
spec_dbg_fw_write
(
struct
file
*
file
,
const
char
__user
*
buf
,
size_t
count
,
loff_t
*
ppos
)
{
struct
spec_gn412x
*
spec_gn412x
=
file
->
private_data
;
char
buf_l
[
SPEC_DBG_FW_BUF_LEN
];
int
err
;
if
(
!
buf
||
!
count
)
{
dev_err
(
&
spec_gn412x
->
pdev
->
dev
,
"Invalid input
\n
"
);
if
(
SPEC_DBG_FW_BUF_LEN
<
count
)
{
dev_err
(
&
spec_gn412x
->
pdev
->
dev
,
"Firmware name too long max %u
\n
"
,
SPEC_DBG_FW_BUF_LEN
);
return
-
EINVAL
;
}
memset
(
buf_l
,
0
,
SPEC_DBG_FW_BUF_LEN
);
err
=
copy_from_user
(
buf_l
,
buf
,
count
);
if
(
err
)
return
-
EFAULT
;
err
=
spec_fw_load
(
spec_gn412x
,
buf
);
if
(
err
)
...
...
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