Remove unneeded parameter in port_forward
This parameter was made obsolete by the common address refactoring. Signed-off-by: Jiri Benc <jbenc@redhat.com>master
parent
ba577d7123
commit
d6e4173e19
2
clock.c
2
clock.c
|
@ -785,7 +785,7 @@ static void clock_forward_mgmt_msg(struct clock *c, struct port *p, struct ptp_m
|
||||||
msg->management.boundaryHops--;
|
msg->management.boundaryHops--;
|
||||||
msg_pre_send(msg);
|
msg_pre_send(msg);
|
||||||
}
|
}
|
||||||
if (port_forward(fwd, msg, pdulen))
|
if (port_forward(fwd, msg))
|
||||||
pr_err("port %d: management forward failed", i + 1);
|
pr_err("port %d: management forward failed", i + 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
2
port.c
2
port.c
|
@ -2163,7 +2163,7 @@ enum fsm_event port_event(struct port *p, int fd_index)
|
||||||
return event;
|
return event;
|
||||||
}
|
}
|
||||||
|
|
||||||
int port_forward(struct port *p, struct ptp_message *msg, int msglen)
|
int port_forward(struct port *p, struct ptp_message *msg)
|
||||||
{
|
{
|
||||||
int cnt;
|
int cnt;
|
||||||
cnt = transport_send(p->trp, &p->fda, 0, msg);
|
cnt = transport_send(p->trp, &p->fda, 0, msg);
|
||||||
|
|
3
port.h
3
port.h
|
@ -87,10 +87,9 @@ enum fsm_event port_event(struct port *port, int fd_index);
|
||||||
* Forward a message on a given port.
|
* Forward a message on a given port.
|
||||||
* @param port A pointer previously obtained via port_open().
|
* @param port A pointer previously obtained via port_open().
|
||||||
* @param msg The message to send. Must be in network byte order.
|
* @param msg The message to send. Must be in network byte order.
|
||||||
* @param msglen The length of the message in bytes.
|
|
||||||
* @return Zero on success, non-zero otherwise.
|
* @return Zero on success, non-zero otherwise.
|
||||||
*/
|
*/
|
||||||
int port_forward(struct port *p, struct ptp_message *msg, int msglen);
|
int port_forward(struct port *p, struct ptp_message *msg);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Prepare message for transmission and send it to a given port. Note that
|
* Prepare message for transmission and send it to a given port. Note that
|
||||||
|
|
Loading…
Reference in New Issue