Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
advLigoRTS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CDS
software
advLigoRTS
Commits
0b29fa89
Commit
0b29fa89
authored
3 years ago
by
Ezekiel Dohmen
Browse files
Options
Downloads
Patches
Plain Diff
small formatting changes
parent
afc962c5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!439
RCG 5.0 release fro deb 10
,
!318
mbuf_allocate_area upgrade
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/drv/mbuf/mbuf.c
+20
-20
20 additions, 20 deletions
src/drv/mbuf/mbuf.c
src/drv/mbuf/mbuf_kernel.h
+1
-1
1 addition, 1 deletion
src/drv/mbuf/mbuf_kernel.h
with
21 additions
and
21 deletions
src/drv/mbuf/mbuf.c
+
20
−
20
View file @
0b29fa89
...
...
@@ -217,9 +217,9 @@ void* mbuf_allocate_area(char *name, int size, struct file *file) {
if
(
i
>=
0
)
{
++
usage_cnt
[
i
];
if
(
file
)
file
->
private_data
=
mtag
[
i
];
spin_unlock
(
&
lock
);
return
kmalloc_area
[
i
];
if
(
file
)
file
->
private_data
=
mtag
[
i
];
spin_unlock
(
&
lock
);
return
kmalloc_area
[
i
];
}
...
...
@@ -244,8 +244,8 @@ void* mbuf_allocate_area(char *name, int size, struct file *file) {
//rkfree(kmalloc_area[i], s);
//kmalloc_area[i] = 0;
if
(
kmalloc_area
[
i
]
==
0
)
{
spin_unlock
(
&
lock
);
printk
(
"malloc() failed
\n
"
);
spin_unlock
(
&
lock
);
printk
(
"malloc() failed
\n
"
);
return
0
;
}
...
...
@@ -320,11 +320,11 @@ static int mbuf_mmap(struct file *file, struct vm_area_struct *vma)
static
long
mbuf_ioctl
(
struct
file
*
file
,
unsigned
int
cmd
,
unsigned
long
arg
)
{
int
res
;
void
*
buf_ptr
;
int
mod
=
0
;
void
*
buf_ptr
;
int
mod
=
0
;
int
verbose
=
0
;
struct
mbuf_request_struct
req
;
void
__user
*
argp
=
(
void
__user
*
)
arg
;
struct
mbuf_request_struct
req
;
void
__user
*
argp
=
(
void
__user
*
)
arg
;
verbose
=
(
int
)
atomic_read
(
&
mbuf_verbosity
);
...
...
@@ -359,18 +359,18 @@ static long mbuf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
break
;
case
IOCTL_MBUF_DEALLOCATE
:
{
if
(
copy_from_user
(
&
req
,
(
void
*
)
argp
,
sizeof
(
req
)))
{
return
-
EFAULT
;
}
//printk("mbuf_ioctl: name:%.32s, size:%d, cmd:%d, file:%p\n", req.name, req.size, cmd, file);
res
=
mbuf_release_area
(
req
.
name
,
file
);
if
(
res
>=
0
)
{
return
0
;
}
else
{
return
-
EINVAL
;
}
if
(
copy_from_user
(
&
req
,
(
void
*
)
argp
,
sizeof
(
req
)))
{
return
-
EFAULT
;
}
//printk("mbuf_ioctl: name:%.32s, size:%d, cmd:%d, file:%p\n", req.name, req.size, cmd, file);
res
=
mbuf_release_area
(
req
.
name
,
file
);
if
(
res
>=
0
)
{
return
0
;
}
else
{
return
-
EINVAL
;
}
}
break
;
break
;
case
IOCTL_MBUF_INFO
:
#if 0
...
...
This diff is collapsed.
Click to expand it.
src/drv/mbuf/mbuf_kernel.h
+
1
−
1
View file @
0b29fa89
...
...
@@ -11,5 +11,5 @@ void * mbuf_allocate_area(char *name, int size, struct file *file);
int
mbuf_release_area
(
char
*
name
,
struct
file
*
file
);
#endif // LIGO_MBUF_H
#endif // LIGO_MBUF_
KERNEL_
H
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