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
15448185
Commit
15448185
authored
Apr 25, 2002
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid use of __FUNCTION__ cpp pasting.
parent
caf37639
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
net/ipv4/af_inet.c
net/ipv4/af_inet.c
+2
-2
net/unix/af_unix.c
net/unix/af_unix.c
+2
-2
No files found.
net/ipv4/af_inet.c
View file @
15448185
...
...
@@ -1158,8 +1158,8 @@ static int __init inet_init(void)
sizeof
(
struct
raw_sock
),
0
,
SLAB_HWCACHE_ALIGN
,
0
,
0
);
if
(
!
tcp_sk_cachep
||
!
udp_sk_cachep
||
!
raw4_sk_cachep
)
printk
(
KERN_CRIT
__FUNCTION__
"
: Can't create protocol sock SLAB caches!
\n
"
);
printk
(
KERN_CRIT
"inet_init
: Can't create protocol sock SLAB caches!
\n
"
);
/*
* Tell SOCKET that we are alive...
*/
...
...
net/unix/af_unix.c
View file @
15448185
...
...
@@ -1886,8 +1886,8 @@ static int __init af_unix_init(void)
sizeof
(
struct
unix_sock
),
0
,
SLAB_HWCACHE_ALIGN
,
0
,
0
);
if
(
!
unix_sk_cachep
)
printk
(
KERN_CRIT
__FUNCTION__
": Cannot create unix_sock SLAB cache!
\n
"
);
printk
(
KERN_CRIT
"
af_unix_init
: Cannot create unix_sock SLAB cache!
\n
"
);
sock_register
(
&
unix_family_ops
);
#ifdef CONFIG_PROC_FS
...
...
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