diff options
| author | Masanari Iida <standby24x7@gmail.com> | 2014-09-04 10:44:36 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2014-09-05 20:35:28 -0400 |
| commit | e793c0f70e9bdf4a2e71c151a1a3cf85c4db92ad (patch) | |
| tree | 4e323e2418caa88fd7bcebb8f82792bcab4c4ed4 | |
| parent | 6e9e5644378bdeebe09db9181534a03361701f4e (diff) | |
net: treewide: Fix typo found in DocBook/networking.xml
This patch fix spelling typo found in DocBook/networking.xml.
It is because the neworking.xml is generated from comments
in the source, I have to fix typo in comments within the source.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | include/linux/netdevice.h | 4 | ||||
| -rw-r--r-- | include/net/wimax.h | 2 | ||||
| -rw-r--r-- | include/trace/events/irq.h | 4 | ||||
| -rw-r--r-- | net/core/datagram.c | 2 | ||||
| -rw-r--r-- | net/core/gen_estimator.c | 2 | ||||
| -rw-r--r-- | net/core/gen_stats.c | 2 | ||||
| -rw-r--r-- | net/core/skbuff.c | 4 | ||||
| -rw-r--r-- | net/core/sock.c | 4 | ||||
| -rw-r--r-- | net/socket.c | 2 |
9 files changed, 13 insertions, 13 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 38377392d082..c8e388e5fccc 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
| @@ -3176,7 +3176,7 @@ static inline int __dev_uc_sync(struct net_device *dev, | |||
| 3176 | } | 3176 | } |
| 3177 | 3177 | ||
| 3178 | /** | 3178 | /** |
| 3179 | * __dev_uc_unsync - Remove synchonized addresses from device | 3179 | * __dev_uc_unsync - Remove synchronized addresses from device |
| 3180 | * @dev: device to sync | 3180 | * @dev: device to sync |
| 3181 | * @unsync: function to call if address should be removed | 3181 | * @unsync: function to call if address should be removed |
| 3182 | * | 3182 | * |
| @@ -3220,7 +3220,7 @@ static inline int __dev_mc_sync(struct net_device *dev, | |||
| 3220 | } | 3220 | } |
| 3221 | 3221 | ||
| 3222 | /** | 3222 | /** |
| 3223 | * __dev_mc_unsync - Remove synchonized addresses from device | 3223 | * __dev_mc_unsync - Remove synchronized addresses from device |
| 3224 | * @dev: device to sync | 3224 | * @dev: device to sync |
| 3225 | * @unsync: function to call if address should be removed | 3225 | * @unsync: function to call if address should be removed |
| 3226 | * | 3226 | * |
diff --git a/include/net/wimax.h b/include/net/wimax.h index e52ef5357e08..c52b68577cb0 100644 --- a/include/net/wimax.h +++ b/include/net/wimax.h | |||
| @@ -290,7 +290,7 @@ struct wimax_dev; | |||
| 290 | * This operation has to be synchronous, and return only when the | 290 | * This operation has to be synchronous, and return only when the |
| 291 | * reset is complete. In case of having had to resort to bus/cold | 291 | * reset is complete. In case of having had to resort to bus/cold |
| 292 | * reset implying a device disconnection, the call is allowed to | 292 | * reset implying a device disconnection, the call is allowed to |
| 293 | * return inmediately. | 293 | * return immediately. |
| 294 | * NOTE: wimax_dev->mutex is NOT locked when this op is being | 294 | * NOTE: wimax_dev->mutex is NOT locked when this op is being |
| 295 | * called; however, wimax_dev->mutex_reset IS locked to ensure | 295 | * called; however, wimax_dev->mutex_reset IS locked to ensure |
| 296 | * serialization of calls to wimax_reset(). | 296 | * serialization of calls to wimax_reset(). |
diff --git a/include/trace/events/irq.h b/include/trace/events/irq.h index 1c09820df585..3608bebd3d9c 100644 --- a/include/trace/events/irq.h +++ b/include/trace/events/irq.h | |||
| @@ -107,7 +107,7 @@ DECLARE_EVENT_CLASS(softirq, | |||
| 107 | * @vec_nr: softirq vector number | 107 | * @vec_nr: softirq vector number |
| 108 | * | 108 | * |
| 109 | * When used in combination with the softirq_exit tracepoint | 109 | * When used in combination with the softirq_exit tracepoint |
| 110 | * we can determine the softirq handler runtine. | 110 | * we can determine the softirq handler routine. |
| 111 | */ | 111 | */ |
| 112 | DEFINE_EVENT(softirq, softirq_entry, | 112 | DEFINE_EVENT(softirq, softirq_entry, |
| 113 | 113 | ||
| @@ -121,7 +121,7 @@ DEFINE_EVENT(softirq, softirq_entry, | |||
| 121 | * @vec_nr: softirq vector number | 121 | * @vec_nr: softirq vector number |
| 122 | * | 122 | * |
| 123 | * When used in combination with the softirq_entry tracepoint | 123 | * When used in combination with the softirq_entry tracepoint |
| 124 | * we can determine the softirq handler runtine. | 124 | * we can determine the softirq handler routine. |
| 125 | */ | 125 | */ |
| 126 | DEFINE_EVENT(softirq, softirq_exit, | 126 | DEFINE_EVENT(softirq, softirq_exit, |
| 127 | 127 | ||
diff --git a/net/core/datagram.c b/net/core/datagram.c index 488dd1a825c0..fdbc9a81d4c2 100644 --- a/net/core/datagram.c +++ b/net/core/datagram.c | |||
| @@ -775,7 +775,7 @@ __sum16 __skb_checksum_complete(struct sk_buff *skb) | |||
| 775 | EXPORT_SYMBOL(__skb_checksum_complete); | 775 | EXPORT_SYMBOL(__skb_checksum_complete); |
| 776 | 776 | ||
| 777 | /** | 777 | /** |
| 778 | * skb_copy_and_csum_datagram_iovec - Copy and checkum skb to user iovec. | 778 | * skb_copy_and_csum_datagram_iovec - Copy and checksum skb to user iovec. |
| 779 | * @skb: skbuff | 779 | * @skb: skbuff |
| 780 | * @hlen: hardware length | 780 | * @hlen: hardware length |
| 781 | * @iov: io vector | 781 | * @iov: io vector |
diff --git a/net/core/gen_estimator.c b/net/core/gen_estimator.c index 6b5b6e7013ca..9d33dfffca19 100644 --- a/net/core/gen_estimator.c +++ b/net/core/gen_estimator.c | |||
| @@ -197,7 +197,7 @@ struct gen_estimator *gen_find_node(const struct gnet_stats_basic_packed *bstats | |||
| 197 | * as destination. A new timer with the interval specified in the | 197 | * as destination. A new timer with the interval specified in the |
| 198 | * configuration TLV is created. Upon each interval, the latest statistics | 198 | * configuration TLV is created. Upon each interval, the latest statistics |
| 199 | * will be read from &bstats and the estimated rate will be stored in | 199 | * will be read from &bstats and the estimated rate will be stored in |
| 200 | * &rate_est with the statistics lock grabed during this period. | 200 | * &rate_est with the statistics lock grabbed during this period. |
| 201 | * | 201 | * |
| 202 | * Returns 0 on success or a negative error code. | 202 | * Returns 0 on success or a negative error code. |
| 203 | * | 203 | * |
diff --git a/net/core/gen_stats.c b/net/core/gen_stats.c index 9d3d9e78397b..2ddbce4cce14 100644 --- a/net/core/gen_stats.c +++ b/net/core/gen_stats.c | |||
| @@ -206,7 +206,7 @@ EXPORT_SYMBOL(gnet_stats_copy_queue); | |||
| 206 | * @st: application specific statistics data | 206 | * @st: application specific statistics data |
| 207 | * @len: length of data | 207 | * @len: length of data |
| 208 | * | 208 | * |
| 209 | * Appends the application sepecific statistics to the top level TLV created by | 209 | * Appends the application specific statistics to the top level TLV created by |
| 210 | * gnet_stats_start_copy() and remembers the data for XSTATS if the dumping | 210 | * gnet_stats_start_copy() and remembers the data for XSTATS if the dumping |
| 211 | * handle is in backward compatibility mode. | 211 | * handle is in backward compatibility mode. |
| 212 | * | 212 | * |
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 163b673f9e62..da1378a3e2c7 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c | |||
| @@ -2647,7 +2647,7 @@ EXPORT_SYMBOL(skb_prepare_seq_read); | |||
| 2647 | * skb_seq_read() will return the remaining part of the block. | 2647 | * skb_seq_read() will return the remaining part of the block. |
| 2648 | * | 2648 | * |
| 2649 | * Note 1: The size of each block of data returned can be arbitrary, | 2649 | * Note 1: The size of each block of data returned can be arbitrary, |
| 2650 | * this limitation is the cost for zerocopy seqeuental | 2650 | * this limitation is the cost for zerocopy sequential |
| 2651 | * reads of potentially non linear data. | 2651 | * reads of potentially non linear data. |
| 2652 | * | 2652 | * |
| 2653 | * Note 2: Fragment lists within fragments are not implemented | 2653 | * Note 2: Fragment lists within fragments are not implemented |
| @@ -2781,7 +2781,7 @@ EXPORT_SYMBOL(skb_find_text); | |||
| 2781 | /** | 2781 | /** |
| 2782 | * skb_append_datato_frags - append the user data to a skb | 2782 | * skb_append_datato_frags - append the user data to a skb |
| 2783 | * @sk: sock structure | 2783 | * @sk: sock structure |
| 2784 | * @skb: skb structure to be appened with user data. | 2784 | * @skb: skb structure to be appended with user data. |
| 2785 | * @getfrag: call back function to be used for getting the user data | 2785 | * @getfrag: call back function to be used for getting the user data |
| 2786 | * @from: pointer to user message iov | 2786 | * @from: pointer to user message iov |
| 2787 | * @length: length of the iov message | 2787 | * @length: length of the iov message |
diff --git a/net/core/sock.c b/net/core/sock.c index 29870571c42f..d372b4bd3f99 100644 --- a/net/core/sock.c +++ b/net/core/sock.c | |||
| @@ -166,7 +166,7 @@ EXPORT_SYMBOL(sk_ns_capable); | |||
| 166 | /** | 166 | /** |
| 167 | * sk_capable - Socket global capability test | 167 | * sk_capable - Socket global capability test |
| 168 | * @sk: Socket to use a capability on or through | 168 | * @sk: Socket to use a capability on or through |
| 169 | * @cap: The global capbility to use | 169 | * @cap: The global capability to use |
| 170 | * | 170 | * |
| 171 | * Test to see if the opener of the socket had when the socket was | 171 | * Test to see if the opener of the socket had when the socket was |
| 172 | * created and the current process has the capability @cap in all user | 172 | * created and the current process has the capability @cap in all user |
| @@ -183,7 +183,7 @@ EXPORT_SYMBOL(sk_capable); | |||
| 183 | * @sk: Socket to use a capability on or through | 183 | * @sk: Socket to use a capability on or through |
| 184 | * @cap: The capability to use | 184 | * @cap: The capability to use |
| 185 | * | 185 | * |
| 186 | * Test to see if the opener of the socket had when the socke was created | 186 | * Test to see if the opener of the socket had when the socket was created |
| 187 | * and the current process has the capability @cap over the network namespace | 187 | * and the current process has the capability @cap over the network namespace |
| 188 | * the socket is a member of. | 188 | * the socket is a member of. |
| 189 | */ | 189 | */ |
diff --git a/net/socket.c b/net/socket.c index 4eb09b34b2d3..2e2586e2dee1 100644 --- a/net/socket.c +++ b/net/socket.c | |||
| @@ -2601,7 +2601,7 @@ SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args) | |||
| 2601 | * | 2601 | * |
| 2602 | * This function is called by a protocol handler that wants to | 2602 | * This function is called by a protocol handler that wants to |
| 2603 | * advertise its address family, and have it linked into the | 2603 | * advertise its address family, and have it linked into the |
| 2604 | * socket interface. The value ops->family coresponds to the | 2604 | * socket interface. The value ops->family corresponds to the |
| 2605 | * socket system call protocol family. | 2605 | * socket system call protocol family. |
| 2606 | */ | 2606 | */ |
| 2607 | int sock_register(const struct net_proto_family *ops) | 2607 | int sock_register(const struct net_proto_family *ops) |
