Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
5fdf1e67
Commit
5fdf1e67
authored
Apr 27, 2007
by
Mark Fasheh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ocfs2: fix sparse warnings in fs/ocfs2/cluster
Signed-off-by:
Mark Fasheh
<
mark.fasheh@oracle.com
>
parent
a7d25539
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
fs/ocfs2/cluster/heartbeat.c
fs/ocfs2/cluster/heartbeat.c
+1
-1
fs/ocfs2/cluster/tcp.c
fs/ocfs2/cluster/tcp.c
+5
-5
No files found.
fs/ocfs2/cluster/heartbeat.c
View file @
5fdf1e67
...
...
@@ -438,7 +438,7 @@ static inline void o2hb_prepare_block(struct o2hb_region *reg,
hb_block
));
mlog
(
ML_HB_BIO
,
"our node generation = 0x%llx, cksum = 0x%x
\n
"
,
(
long
long
)
cpu_to_le64
(
generation
)
,
(
long
long
)
generation
,
le32_to_cpu
(
hb_block
->
hb_cksum
));
}
...
...
fs/ocfs2/cluster/tcp.c
View file @
5fdf1e67
...
...
@@ -1496,7 +1496,7 @@ static void o2net_start_connect(struct work_struct *work)
sock
->
sk
->
sk_allocation
=
GFP_ATOMIC
;
myaddr
.
sin_family
=
AF_INET
;
myaddr
.
sin_addr
.
s_addr
=
(
__force
u32
)
mynode
->
nd_ipv4_address
;
myaddr
.
sin_addr
.
s_addr
=
mynode
->
nd_ipv4_address
;
myaddr
.
sin_port
=
(
__force
u16
)
htons
(
0
);
/* any port */
ret
=
sock
->
ops
->
bind
(
sock
,
(
struct
sockaddr
*
)
&
myaddr
,
...
...
@@ -1521,8 +1521,8 @@ static void o2net_start_connect(struct work_struct *work)
spin_unlock
(
&
nn
->
nn_lock
);
remoteaddr
.
sin_family
=
AF_INET
;
remoteaddr
.
sin_addr
.
s_addr
=
(
__force
u32
)
node
->
nd_ipv4_address
;
remoteaddr
.
sin_port
=
(
__force
u16
)
node
->
nd_ipv4_port
;
remoteaddr
.
sin_addr
.
s_addr
=
node
->
nd_ipv4_address
;
remoteaddr
.
sin_port
=
node
->
nd_ipv4_port
;
ret
=
sc
->
sc_sock
->
ops
->
connect
(
sc
->
sc_sock
,
(
struct
sockaddr
*
)
&
remoteaddr
,
...
...
@@ -1810,8 +1810,8 @@ static int o2net_open_listening_sock(__be32 addr, __be16 port)
int
ret
;
struct
sockaddr_in
sin
=
{
.
sin_family
=
PF_INET
,
.
sin_addr
=
{
.
s_addr
=
(
__force
u32
)
addr
},
.
sin_port
=
(
__force
u16
)
port
,
.
sin_addr
=
{
.
s_addr
=
addr
},
.
sin_port
=
port
,
};
ret
=
sock_create
(
PF_INET
,
SOCK_STREAM
,
IPPROTO_TCP
,
&
sock
);
...
...
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