aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-10-21Staging: hv: remove SendPacketMultiPageBuffer from struct ↵Greg Kroah-Hartman2-16/+0
vmbus_channel_interface No one calls it anymore, so remove it. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-21Staging: hv: storvsc: call vmbus_sendpacket_multipagebuffer directlyGreg Kroah-Hartman1-2/+1
Don't do the interface indirection, it's not needed at all. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-21Staging: hv: channel: export vmbus_sendpacket_multipagebuffer to modulesGreg Kroah-Hartman1-1/+1
Drivers need to call this directly, so export it, like other vmbus functions. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-21Staging: hv: remove RecvPacket from struct vmbus_channel_interfaceGreg Kroah-Hartman2-12/+0
No one calls it anymore, so remove it. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-21Staging: hv: storvsc: call vmbus_recvpacket directlyGreg Kroah-Hartman1-4/+4
Don't do the interface indirection, it's not needed at all. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-21Staging: hv: remove RecvPacketRaw from struct vmbus_channel_interfaceGreg Kroah-Hartman2-12/+0
No one calls it anymore, so remove it. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-21Staging: hv: netvsc: call vmbus_receivepacket_raw directlyGreg Kroah-Hartman1-3/+2
Don't do the interface indirection, it's not needed at all. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-21Staging: hv: channel: export vmbus_receivepacket_raw to modulesGreg Kroah-Hartman1-0/+1
Drivers need to call this directly, so export it, like other vmbus functions. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-21Staging: hv: rename context to channel in struct hv_deviceGreg Kroah-Hartman6-21/+21
As it really is a channel, not a "context" name it so. This also entailed making a few more functions typesafe as they were sending a struct vmbus_channel pointer as a void pointer. There are still a few more that need to be converted (the osd callbacks are one), but this is good for now. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-21Staging: hv: make *context a real pointer in struct hv_deviceGreg Kroah-Hartman1-1/+1
This is really the struct vmbus_channel for the device, not a void pointer, so use the real structure to ensure type safety everywhere. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-21Staging: hv: remove EstablishGpadl from struct vmbus_channel_interfaceGreg Kroah-Hartman2-11/+0
No one calls it anymore, so remove it. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-21Staging: hv: netvsc: call vmbus_establish_gpadl directlyGreg Kroah-Hartman1-8/+6
Don't do the interface indirection, it's not needed at all. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-21Staging: hv: channel: export vmbus_establish_gpadl to modulesGreg Kroah-Hartman1-0/+1
Drivers need to call this directly, so export it, like other vmbus functions. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-21Staging: hv: remove TeardownGpadl from struct vmbus_channel_interfaceGreg Kroah-Hartman2-10/+0
No one calls it anymore, so remove it. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-21Staging: hv: netvsc: call vmbus_teardown_gpadl directlyGreg Kroah-Hartman1-5/+5
Don't do the interface indirection, it's not needed at all. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-21Staging: hv: channel: export vmbus_teardown_gpadl to modulesGreg Kroah-Hartman1-0/+1
Drivers need to call this directly, so export it, like other vmbus functions. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-20Staging: hv: make get_channel_info staticGreg Kroah-Hartman4-77/+42
This is done by moving it to the only .c file it is used in. This also allowed us to delete the channel_interface.h file, as it's no longer needed. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-20Staging: hv: vmbus_drv: remove vmbus_child_device_get_infoGreg Kroah-Hartman1-14/+1
Just make the call to get_channel_info() directly. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-20Staging: hv: remove GetChannelInfo from struct vmbus_driverGreg Kroah-Hartman3-7/+2
It was only set to one value, so just make the call to get_channel_info() directly. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-20Staging: hv: remove GetInfo pointer from struct vmbus_channel_interfaceGreg Kroah-Hartman2-3/+0
It's only set by one thing, and never called. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-20Staging: hv: remove VmbusGetChannelInfoGreg Kroah-Hartman1-10/+1
It's not needed, make the function pointer point to get_channel_info() instead. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-20Staging: hv: make alloc_channel staticGreg Kroah-Hartman2-3/+1
It's only used in one file, and is a pretty generic name. Cc: Haiyang Zhang <[email protected]> Cc: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-20staging: batman-adv: remove useless addr_to_string()Andy Shevchenko8-38/+18
Since all *printf() methods in the kernel understand '%pM' modifier the conversion to the string is useless beforehand. Additionally this patch decreases batman_if structure by 20 bytes. Signed-off-by: Andy Shevchenko <[email protected]> Cc: Marek Lindner <[email protected]> Cc: Simon Wunderlich <[email protected]> Cc: Andrew Lunn <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: brcm80211: brcmfmac: add debugfs, display wi-fi statisticsnohee ko2-0/+44
Add debugfs to display wi-fi profile/statistics. Initially some profile parameters such as dtim_period, beacon_int will be seen at /sys/kernel/debug/ieee80211/phy#/netdev:eth#. This will provide users with current connection status. Signed-off-by: Nohee Ko <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: brcm80211: brcmfmac: add profile, beacon_int, dtim_periodnohee ko2-2/+44
Add profile, beacon_int & dtim_period. This profile can be seen through debugfs. Signed-off-by: Nohee Ko <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: brcm80211: brcmfmac: enable passive, active scan selectionnohee ko2-27/+37
Enable passive, active scan selection. Previously it did active scan and reported probe response result regardless of active_scan flag Signed-off-by: Nohee Ko <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: brcm80211: brcmfmac: remove unnecessary cflags, WL_ISCAN_DISABLED & ↵nohee ko1-9/+1
WL_ROAM_DISABLED Remove unnecessary cflags, WL_ISCAN_DISABLED and WL_ROAM_DISABLED. Iscan is ON and Roam by FW is OFF by default. Signed-off-by: Nohee Ko <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19Staging: frontier: fix coding style issues in tranzport.cGustavo Silva1-27/+27
This is a patch to the tranzport.c file that fixes up the following issue WARNING: please, no space for starting a line x 23 Signed-off-by: Gustavo Silva <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19Staging: cxt1e1: multiple definition of max_mtu fixBob Beers4-32/+32
eliminate multiple definition of max_mtu by renaming with cxt1e1_ prefix, similarly rename max_mru Signed-off-by: Bob Beers <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: speakup: fix memory leakVasiliy Kulikov1-2/+5
speakup_init() didn't free first_console if speakup_kobj_init() fails. Also propagate speakup_kobj_init()'s return code. Signed-off-by: Vasiliy Kulikov <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: speakup: fix leaks of sysfs groupsVasiliy Kulikov1-4/+14
speakup_kobj_init() and speakup_kobj_exit() didn't remove i18n_attr_group and main_attr_group sysfs groups. Signed-off-by: Vasiliy Kulikov <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: ft1000: Remove FT1000_INFO typedef usage.Marek Belisko6-57/+57
Signed-off-by: Marek Belisko <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: ft1000: Remove dead code from ft1000_hw.cMarek Belisko1-262/+5
Signed-off-by: Marek Belisko <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: ft1000: Get rid of using typedef.Marek Belisko3-21/+21
Signed-off-by: Marek Belisko <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: speakup: varhandlers.c style fixesWilliam Hubbs1-54/+55
fix issues reported by checkpatch.pl Signed-off-by: William Hubbs <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: speakup: thread.c style fixesWilliam Hubbs1-4/+4
fix issues reported by checkpatch.pl Signed-off-by: William Hubbs <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: speakup: synth.c style fixesWilliam Hubbs1-13/+18
fix issues reported by checkpatch.pl Signed-off-by: William Hubbs <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: speakup: serialio.c style fixesWilliam Hubbs1-3/+6
fix issues reported by checkpatch.pl Signed-off-by: William Hubbs <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: speakup: selection.c style fixesWilliam Hubbs1-10/+6
fix issues reported by checkpatch.pl Signed-off-by: William Hubbs <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: speakup: main.c style fixesWilliam Hubbs2-285/+291
- fix issues reported by checkpatch.pl - run code through Lindent - move some prototypes to speakup.h Signed-off-by: William Hubbs <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: speakup: i18n.c fix long linesWilliam Hubbs1-3/+6
A help message had to be slightly reworded, but the meaning is the same. Signed-off-by: William Hubbs <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: wlags49_h2: remove useless DbgHwAddr() methodAndy Shevchenko5-94/+66
There is no needs to prepare string for MAC addresses beforehand, due to kernel's *printf() have '%pM' format option. Signed-off-by: Andy Shevchenko <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19staging: wlags49_h2: fix format of timeStamp debug outputAndy Shevchenko1-2/+11
Signed-off-by: Andy Shevchenko <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19Staging: batman-adv: process OGMs bigger than MAX_AGGREGATION_BYTESMarek Lindner1-4/+3
Reported-by: Sam Yeung <[email protected]> Signed-off-by: Marek Lindner <[email protected]> Signed-off-by: Sven Eckelmann <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19Staging: batman-adv: fix crash when new OGM is generatedMarek Lindner1-2/+8
If aggregation is not enabled the local translation table can grow much bigger and expects to fill a full ethernet packet. Reported-by: Sam Yeung <[email protected]> Signed-off-by: Marek Lindner <[email protected]> Signed-off-by: Sven Eckelmann <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19Staging: batman-adv: protect against ogm packet overflow by checking table ↵Marek Lindner1-2/+7
length Reported-by: Sam Yeung <[email protected]> Signed-off-by: Marek Lindner <[email protected]> Signed-off-by: Sven Eckelmann <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19Staging: batman-adv: document fragmentation sysfs APIMarek Lindner1-0/+8
Signed-off-by: Marek Lindner <[email protected]> Signed-off-by: Sven Eckelmann <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19Staging: batman-adv: Fix resizing of broadcast seqno buffers on if deletionLinus Lüssing1-2/+2
Not only the entries of the deleted interface got erased, but also all ones with a lower if_num. This commit fixes this issue by setting the destination appropriately. Signed-off-by: Linus Lüssing <[email protected]> Signed-off-by: Sven Eckelmann <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19Staging: batman-adv: Don't dereference unchecked incoming soft_ifaceSven Eckelmann1-2/+5
send_packet derefenced forw_packet->if_incoming and checked if forw_packet->if_incoming is NULL. This cannot happen, but still makes irritates when reading through the functions. Reported-by: Dan Carpenter <[email protected]> Signed-off-by: Sven Eckelmann <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2010-10-19Staging: batman-adv: Add hash recommendations to TODOSven Eckelmann1-0/+4
David Miller <[email protected]> recommended in [email protected] that we must make the hash abstraction helper more efficient and may remove it completely. Signed-off-by: Sven Eckelmann <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>