Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
Linux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
E-EXK4 - Operating System Group
projects
Linux
Commits
62a1c703
Commit
62a1c703
authored
11 years ago
by
Ben Hutchings
Browse files
Options
Downloads
Patches
Plain Diff
sfc: Split PTP multicast filter insertion/removal out of efx_ptp_{start,stop}()
Signed-off-by:
Ben Hutchings
<
bhutchings@solarflare.com
>
parent
065e64c4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
drivers/net/ethernet/sfc/ptp.c
+39
-17
39 additions, 17 deletions
drivers/net/ethernet/sfc/ptp.c
with
39 additions
and
17 deletions
drivers/net/ethernet/sfc/ptp.c
+
39
−
17
View file @
62a1c703
...
@@ -755,13 +755,27 @@ static inline void efx_ptp_process_rx(struct efx_nic *efx, struct sk_buff *skb)
...
@@ -755,13 +755,27 @@ static inline void efx_ptp_process_rx(struct efx_nic *efx, struct sk_buff *skb)
local_bh_enable
();
local_bh_enable
();
}
}
static
int
efx_ptp_start
(
struct
efx_nic
*
efx
)
static
void
efx_ptp_remove_multicast_filters
(
struct
efx_nic
*
efx
)
{
struct
efx_ptp_data
*
ptp
=
efx
->
ptp_data
;
if
(
ptp
->
rxfilter_installed
)
{
efx_filter_remove_id_safe
(
efx
,
EFX_FILTER_PRI_REQUIRED
,
ptp
->
rxfilter_general
);
efx_filter_remove_id_safe
(
efx
,
EFX_FILTER_PRI_REQUIRED
,
ptp
->
rxfilter_event
);
ptp
->
rxfilter_installed
=
false
;
}
}
static
int
efx_ptp_insert_multicast_filters
(
struct
efx_nic
*
efx
)
{
{
struct
efx_ptp_data
*
ptp
=
efx
->
ptp_data
;
struct
efx_ptp_data
*
ptp
=
efx
->
ptp_data
;
struct
efx_filter_spec
rxfilter
;
struct
efx_filter_spec
rxfilter
;
int
rc
;
int
rc
;
ptp
->
reset_required
=
false
;
if
(
ptp
->
rxfilter_installed
)
return
0
;
/* Must filter on both event and general ports to ensure
/* Must filter on both event and general ports to ensure
* that there is no packet re-ordering.
* that there is no packet re-ordering.
...
@@ -794,23 +808,37 @@ static int efx_ptp_start(struct efx_nic *efx)
...
@@ -794,23 +808,37 @@ static int efx_ptp_start(struct efx_nic *efx)
goto
fail
;
goto
fail
;
ptp
->
rxfilter_general
=
rc
;
ptp
->
rxfilter_general
=
rc
;
ptp
->
rxfilter_installed
=
true
;
return
0
;
fail:
efx_filter_remove_id_safe
(
efx
,
EFX_FILTER_PRI_REQUIRED
,
ptp
->
rxfilter_event
);
return
rc
;
}
static
int
efx_ptp_start
(
struct
efx_nic
*
efx
)
{
struct
efx_ptp_data
*
ptp
=
efx
->
ptp_data
;
int
rc
;
ptp
->
reset_required
=
false
;
rc
=
efx_ptp_insert_multicast_filters
(
efx
);
if
(
rc
)
return
rc
;
rc
=
efx_ptp_enable
(
efx
);
rc
=
efx_ptp_enable
(
efx
);
if
(
rc
!=
0
)
if
(
rc
!=
0
)
goto
fail
2
;
goto
fail
;
ptp
->
evt_frag_idx
=
0
;
ptp
->
evt_frag_idx
=
0
;
ptp
->
current_adjfreq
=
0
;
ptp
->
current_adjfreq
=
0
;
ptp
->
rxfilter_installed
=
true
;
return
0
;
return
0
;
fail2:
efx_filter_remove_id_safe
(
efx
,
EFX_FILTER_PRI_REQUIRED
,
ptp
->
rxfilter_general
);
fail:
fail:
efx_filter_remove_id_safe
(
efx
,
EFX_FILTER_PRI_REQUIRED
,
efx_ptp_remove_multicast_filters
(
efx
);
ptp
->
rxfilter_event
);
return
rc
;
return
rc
;
}
}
...
@@ -826,13 +854,7 @@ static int efx_ptp_stop(struct efx_nic *efx)
...
@@ -826,13 +854,7 @@ static int efx_ptp_stop(struct efx_nic *efx)
rc
=
efx_ptp_disable
(
efx
);
rc
=
efx_ptp_disable
(
efx
);
if
(
ptp
->
rxfilter_installed
)
{
efx_ptp_remove_multicast_filters
(
efx
);
efx_filter_remove_id_safe
(
efx
,
EFX_FILTER_PRI_REQUIRED
,
ptp
->
rxfilter_general
);
efx_filter_remove_id_safe
(
efx
,
EFX_FILTER_PRI_REQUIRED
,
ptp
->
rxfilter_event
);
ptp
->
rxfilter_installed
=
false
;
}
/* Make sure RX packets are really delivered */
/* Make sure RX packets are really delivered */
efx_ptp_deliver_rx_queue
(
&
efx
->
ptp_data
->
rxq
);
efx_ptp_deliver_rx_queue
(
&
efx
->
ptp_data
->
rxq
);
...
...
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