Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
cc81ac77
Commit
cc81ac77
authored
Sep 04, 2003
by
Chas Williams
Committed by
David S. Miller
Sep 04, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ATM]: pvc/svc missing .owner for proto_ops/family (from levon@movementarian.org)
parent
de5f0c10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
net/atm/pvc.c
net/atm/pvc.c
+2
-0
net/atm/svc.c
net/atm/svc.c
+2
-0
No files found.
net/atm/pvc.c
View file @
cc81ac77
...
...
@@ -104,6 +104,7 @@ static int pvc_getname(struct socket *sock,struct sockaddr *sockaddr,
static
struct
proto_ops
pvc_proto_ops
=
{
.
family
=
PF_ATMPVC
,
.
owner
=
THIS_MODULE
,
.
release
=
vcc_release
,
.
bind
=
pvc_bind
,
...
...
@@ -134,6 +135,7 @@ static int pvc_create(struct socket *sock,int protocol)
static
struct
net_proto_family
pvc_family_ops
=
{
.
family
=
PF_ATMPVC
,
.
create
=
pvc_create
,
.
owner
=
THIS_MODULE
,
};
...
...
net/atm/svc.c
View file @
cc81ac77
...
...
@@ -513,6 +513,7 @@ static int svc_getsockopt(struct socket *sock,int level,int optname,
static
struct
proto_ops
svc_proto_ops
=
{
.
family
=
PF_ATMSVC
,
.
owner
=
THIS_MODULE
,
.
release
=
svc_release
,
.
bind
=
svc_bind
,
...
...
@@ -549,6 +550,7 @@ static int svc_create(struct socket *sock,int protocol)
static
struct
net_proto_family
svc_family_ops
=
{
.
family
=
PF_ATMSVC
,
.
create
=
svc_create
,
.
owner
=
THIS_MODULE
,
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment