diff options
author | Adrian Vladu <avladu@cloudbasesolutions.com> | 2019-01-03 14:43:08 -0500 |
---|---|---|
committer | Sasha Levin <sashal@kernel.org> | 2019-01-23 13:21:34 -0500 |
commit | 52d3b4949192e93b948daaa40678fcd4b94bcbd0 (patch) | |
tree | 1b764c758347203aa8c9afc3129c36e0da3a8435 /drivers | |
parent | 17d91256898402daf4425cc541ac9cbf64574d9a (diff) |
hv_netvsc: fix typos in code comments
Fix all typos from hyperv netvsc code comments.
Signed-off-by: Adrian Vladu <avladu@cloudbasesolutions.com>
Cc: "K. Y. Srinivasan" <kys@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Cc: Stephen Hemminger <sthemmin@microsoft.com>
Cc: Sasha Levin <sashal@kernel.org>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: "Alessandro Pilotti" <apilotti@cloudbasesolutions.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/hyperv/hyperv_net.h | 2 | ||||
-rw-r--r-- | drivers/net/hyperv/netvsc.c | 2 | ||||
-rw-r--r-- | drivers/net/hyperv/netvsc_drv.c | 6 | ||||
-rw-r--r-- | drivers/net/hyperv/rndis_filter.c | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/hyperv/hyperv_net.h b/drivers/net/hyperv/hyperv_net.h index e598a684700b..e859ae2e42d5 100644 --- a/drivers/net/hyperv/hyperv_net.h +++ b/drivers/net/hyperv/hyperv_net.h | |||
@@ -1181,7 +1181,7 @@ enum ndis_per_pkt_info_type { | |||
1181 | 1181 | ||
1182 | enum rndis_per_pkt_info_interal_type { | 1182 | enum rndis_per_pkt_info_interal_type { |
1183 | RNDIS_PKTINFO_ID = 1, | 1183 | RNDIS_PKTINFO_ID = 1, |
1184 | /* Add more memebers here */ | 1184 | /* Add more members here */ |
1185 | 1185 | ||
1186 | RNDIS_PKTINFO_MAX | 1186 | RNDIS_PKTINFO_MAX |
1187 | }; | 1187 | }; |
diff --git a/drivers/net/hyperv/netvsc.c b/drivers/net/hyperv/netvsc.c index 1910810e55bd..813d195bbd57 100644 --- a/drivers/net/hyperv/netvsc.c +++ b/drivers/net/hyperv/netvsc.c | |||
@@ -1331,7 +1331,7 @@ void netvsc_channel_cb(void *context) | |||
1331 | prefetch(hv_get_ring_buffer(rbi) + rbi->priv_read_index); | 1331 | prefetch(hv_get_ring_buffer(rbi) + rbi->priv_read_index); |
1332 | 1332 | ||
1333 | if (napi_schedule_prep(&nvchan->napi)) { | 1333 | if (napi_schedule_prep(&nvchan->napi)) { |
1334 | /* disable interupts from host */ | 1334 | /* disable interrupts from host */ |
1335 | hv_begin_read(rbi); | 1335 | hv_begin_read(rbi); |
1336 | 1336 | ||
1337 | __napi_schedule_irqoff(&nvchan->napi); | 1337 | __napi_schedule_irqoff(&nvchan->napi); |
diff --git a/drivers/net/hyperv/netvsc_drv.c b/drivers/net/hyperv/netvsc_drv.c index e281829a04ef..256adbd044f5 100644 --- a/drivers/net/hyperv/netvsc_drv.c +++ b/drivers/net/hyperv/netvsc_drv.c | |||
@@ -370,7 +370,7 @@ static u32 fill_pg_buf(struct page *page, u32 offset, u32 len, | |||
370 | { | 370 | { |
371 | int j = 0; | 371 | int j = 0; |
372 | 372 | ||
373 | /* Deal with compund pages by ignoring unused part | 373 | /* Deal with compound pages by ignoring unused part |
374 | * of the page. | 374 | * of the page. |
375 | */ | 375 | */ |
376 | page += (offset >> PAGE_SHIFT); | 376 | page += (offset >> PAGE_SHIFT); |
@@ -2123,7 +2123,7 @@ static int netvsc_register_vf(struct net_device *vf_netdev) | |||
2123 | if (!netvsc_dev || rtnl_dereference(net_device_ctx->vf_netdev)) | 2123 | if (!netvsc_dev || rtnl_dereference(net_device_ctx->vf_netdev)) |
2124 | return NOTIFY_DONE; | 2124 | return NOTIFY_DONE; |
2125 | 2125 | ||
2126 | /* if syntihetic interface is a different namespace, | 2126 | /* if synthetic interface is a different namespace, |
2127 | * then move the VF to that namespace; join will be | 2127 | * then move the VF to that namespace; join will be |
2128 | * done again in that context. | 2128 | * done again in that context. |
2129 | */ | 2129 | */ |
@@ -2271,7 +2271,7 @@ static int netvsc_probe(struct hv_device *dev, | |||
2271 | * netvsc_probe() can't get rtnl lock and as a result vmbus_onoffer() | 2271 | * netvsc_probe() can't get rtnl lock and as a result vmbus_onoffer() |
2272 | * -> ... -> device_add() -> ... -> __device_attach() can't get | 2272 | * -> ... -> device_add() -> ... -> __device_attach() can't get |
2273 | * the device lock, so all the subchannels can't be processed -- | 2273 | * the device lock, so all the subchannels can't be processed -- |
2274 | * finally netvsc_subchan_work() hangs for ever. | 2274 | * finally netvsc_subchan_work() hangs forever. |
2275 | */ | 2275 | */ |
2276 | rtnl_lock(); | 2276 | rtnl_lock(); |
2277 | 2277 | ||
diff --git a/drivers/net/hyperv/rndis_filter.c b/drivers/net/hyperv/rndis_filter.c index db81378e6624..73b60592de06 100644 --- a/drivers/net/hyperv/rndis_filter.c +++ b/drivers/net/hyperv/rndis_filter.c | |||
@@ -1176,7 +1176,7 @@ int rndis_set_subchannel(struct net_device *ndev, | |||
1176 | wait_event(nvdev->subchan_open, | 1176 | wait_event(nvdev->subchan_open, |
1177 | atomic_read(&nvdev->open_chn) == nvdev->num_chn); | 1177 | atomic_read(&nvdev->open_chn) == nvdev->num_chn); |
1178 | 1178 | ||
1179 | /* ignore failues from setting rss parameters, still have channels */ | 1179 | /* ignore failures from setting rss parameters, still have channels */ |
1180 | if (dev_info) | 1180 | if (dev_info) |
1181 | rndis_filter_set_rss_param(rdev, dev_info->rss_key); | 1181 | rndis_filter_set_rss_param(rdev, dev_info->rss_key); |
1182 | else | 1182 | else |