On Tue, May 05, 2015 at 02:56:41PM -0500, Scott Wood wrote:
> > Don't insist that you must be special and different from everyone else.
>
> There are some users of U16_MAX, U32_MAX, and U64_MAX. Why use a limit
> for a different type than is being used? Why have s16/s32 at all if
> you're going
This patch fixes "space prohibited" errors reported by checkpatch.pl.
Signed-off-by: Charles Rose
---
drivers/staging/sm750fb/ddk750_chip.c | 12 ++--
drivers/staging/sm750fb/ddk750_power.c | 8
drivers/staging/sm750fb/sm750_accel.c | 2 +-
drivers/staging/sm750fb/sm750_help
This patch fixes indentation errors/warnings reported by checkpatch.pl.
Signed-off-by: Charles Rose
---
drivers/staging/sm750fb/ddk750_mode.c | 24
1 file changed, 16 insertions(+), 8 deletions(-)
diff --git a/drivers/staging/sm750fb/ddk750_mode.c
b/drivers/staging/sm7
On 05/03/2015 03:35 PM, Greg KH wrote:
On Fri, Apr 24, 2015 at 11:10:56AM -0400, Charles Rose wrote:
This patch fixes indentation errors/warnings reported by checkpatch.pl.
Signed-off-by: Charles Rose
---
drivers/staging/sm750fb/ddk750_mode.c | 24
1 file changed, 1
Greetings All,
I am wondering if in the function,ni_stc_dma_channel_select_bitfield the line:
return 1 << channel;
is guaranteed to be below the threshold that guarantees us to not overflow on
a unsigned 32 integer due to bit wise shifting to the left.
Thanks Nick
_
> -Original Message-
> From: Eric Dumazet [mailto:eric.duma...@gmail.com]
> Sent: Thursday, April 30, 2015 9:37 PM
> To: KY Srinivasan
> Cc: da...@davemloft.net; net...@vger.kernel.org; linux-
> ker...@vger.kernel.org; de...@linuxdriverproject.org; o...@aepfle.de;
> a...@canonical.com; ja
From: David Kershner
Move hypervisor calls into visorbus and move vbusdeviceinfo.h into
visorbus.
Drivers will call into that to update clientInfo field.
Signed-off-by: David Kershner
Signed-off-by: Benjamin Romer
---
.../unisys/common-spar/include/iovmcall_gnuc.h | 49 -
.../unisys/
From: David Kershner
Move last three files out of common-spar
iochannel.h --> include (will be used by visorhba and visornic)
version.h --> moved to include
controlvmcompletionstatus.h --> moved to visorbus, part of
controlvmchannel.h
Signed-off-by: David Kershner
Signed-off-by
From: Don Zickus
The next layer is the bus/device creation to be converted over to
struct visor_device. Again because memory was allocated already
and the channel created, the code is simplified. No lookups,
very few sanity checks.
Eventually most of these functions could be dissolved into the
From: Don Zickus
The next stage is the notifier functions are converted to use
struct visor_device. The cleanup here is nice because no allocation
is needed. No lookup needed. No channel creation needed.
Things simplify down to the obvious calls.
Signed-off-by: Don Zickus
Signed-off-by: Ben
From: Don Zickus
Another conversion of the init/exit routines with various other
functions used during init thrown in here.
Most of the conversion is mechanical.
Signed-off-by: Don Zickus
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorbus_main.c | 36 -
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchannel.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/unisys/visorbus/visorchannel.c
b/drivers/staging/unisys/visorbus/visorchannel.c
i
From: Don Zickus
Now that the conversion to struct visor_device is complete,
remove all the cruft left behind.
Signed-off-by: Don Zickus
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorbus_main.c| 53 -
drivers/staging/unisys/visorbus/visorbus_private.h |
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchipset.c | 18 --
1 file changed, 18 deletions(-)
diff --git a/drivers/staging/unisys/visorbus/visorchipset.c
b/drivers/staging/unisys/visorbus/visorchipset.
From: Don Zickus
This patch handles the first round of conversion of the initial
vmchannel command to use/allocate a struct visor_device instead
of the _info struct.
This is accomplished by using the find_device_by_id function implemented
in an earlier patch. Most of the conversion is straight
From: David Kershner
Signed-off-by: David Kershner
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/include/sparstop.h | 29 -
1 file changed, 29 deletions(-)
delete mode 100644 drivers/staging/unisys/include/sparstop.h
diff --git a/drivers/staging/unisys/
From: Jes Sorensen
This changes the API for visor_memregion_create() to require a
pre-allocated struct memregion. Embedding this in struct channel
avoids a layer of additional kmalloc()'s and error checks.
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/vi
From: Erik Arfvidson
This patch remove unused controlvmchannel.h #defines
Signed-off-by: Erik Arfvidson
Signed-off-by: Benjamin Romer
---
.../staging/unisys/common-spar/include/channels/controlvmchannel.h | 5 -
1 file changed, 5 deletions(-)
diff --git
a/drivers/staging/unisys/common
From: Don Zickus
This patch is the second wave of changes to the _epilog functions to
struct visor_device.
Straightforward conversion, nothing really complicated here other
than the nice cleanup because device is now known.
Signed-off-by: Don Zickus
Signed-off-by: Benjamin Romer
---
drivers/
From: Erik Arfvidson
This patch removes all timksmod.h pound defines. It also removes
visorkmodutils.c since it no longer has any use by itself. Since
visorkmodutils.c is no longer needed the module_init for
visorchipset.c is modified to call visorutil_spar_detect directly
instead of the extern v
From: Prarit Bhargava
The code in devmajorminor_attr.[ch] only creates sysfs files and is
called only in visorbus_main.c. This code should be unified into
visorbus_main.c. The only changes are a forward declaration issue with
register_devmajorminor_attributes() and making the functions static.
From: Jes Sorensen
This fixes the build breakage caused by recent removal of -I flags in
the Makefiles
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/include/guestlinuxdebug.h | 1 -
drivers/staging/unisys/include/vbushelper.h | 2 --
drivers/staging
From: David Kershner
serialloopbacktest is no longer supported. Get rid of it.
Signed-off-by: David Kershner
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorbus_main.c | 7 ---
drivers/staging/unisys/visorbus/visorchipset.c | 2 +-
2 files changed, 1 insertion(+),
From: Prarit Bhargava
These shouldn't be defined in the code and can be replaced with the
standard bool, true, and false usage that the kernel uses.
Signed-off-by: Prarit Bhargava
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/include/periodic_work.h| 6 +--
drivers/staging/uni
From: Don Zickus
This header is needed by other drivers and should be in a global namespace.
In addition, functionally it is part of visorbus, so roll the contents
into that header file.
Signed-off-by: Don Zickus
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorbus.h
From: Don Zickus
Turn visorbus.h into a public header that all visor* drivers will
include.
Signed-off-by: Don Zickus
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/include/visorbus.h | 214 +
drivers/staging/unisys/visorbus/visorbus.h | 214
From: Don Zickus
Properly hook into the struct device groups element. This allows the
core
infrastructure to manage the files instead of the bus layer. And makes
the code easier to read.
I didn't clean up the _show functions just modified them a bit to handle
the different args for now.
Signe
From: Erik Arfvidson
This patch removes charqueue.[ch] since it no longer called
Signed-off-by: Erik Arfvidson
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorutil/Makefile| 2 +-
drivers/staging/unisys/visorutil/charqueue.c | 127 ---
drivers/stagi
From: Jes Sorensen
This allows the caller to specify an appropriate GFP flag instead of
hardcoding the lowest common denominator.
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
.../common-spar/include/channels/controlvmchannel.h| 5 +
drivers/staging/unisys/include/vis
From: David Kershner
The function find_visor_device_by_channel was not used, get rid of it.
Signed-off-by: David Kershner
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorbus_main.c | 16
1 file changed, 16 deletions(-)
diff --git a/drivers/staging/unis
From: Don Zickus
This is the next stage of conversion, the command responders to
struct visor_device.
Most of this is mechanical and straightforward. I will point out some
quirks that I ran into and what I did:
- bus_responder
- bus_info_clear is no longer used as I am now expecting the core
Later patches will require PCI and ACPI support in the kernel, so add these
features to the Kconfig.
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/Kconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/staging/unisys/Kconfig b/drivers/staging/unisys/Kconfig
index 50223c
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/include/visorbus.h | 1 -
drivers/staging/unisys/visorbus/visorchannel.c | 7 ---
2 files changed, 8 deletions(-)
diff --git a/drivers/staging/unisys/include/visorbus.h
b/drivers/
From: Erik Arfvidson
This patch renames send_irq_handle to reserved1 since this variable
is unused in the guest side.
Signed-off-by: Erik Arfvidson
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/common-spar/include/channels/controlvmchannel.h | 2 +-
1 file changed, 1 insertion(+),
From: Don Zickus
This was replaced by an earlier patch and it not needed.
Signed-off-by: Don Zickus
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorbus_main.c | 197
1 file changed, 197 deletions(-)
diff --git a/drivers/staging/unisys/visorbus/
From: David Kershner
Move vbuschannel.h into visorbus.
Signed-off-by: David Kershner
Signed-off-by: Benjamin Romer
---
.../common-spar/include/channels/vbuschannel.h | 94 --
drivers/staging/unisys/visorbus/vbuschannel.h | 94 ++
2 files change
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
.../staging/unisys/visorutil/memregion_direct.c| 30 --
1 file changed, 30 deletions(-)
diff --git a/drivers/staging/unisys/visorutil/memregion_direct.c
b/drivers/staging/unisys/visorutil
From: Don Zickus
The pending_msg_hdr element of struct visor_device should really be
private and not public. Currently there is no easy way to do that
without allocating memory and passing it along from the command
notifier all the way to the command responder.
I tried to minimize the change an
From: David Kershner
The visorchipset driver originally serviced both servers and
clients. This implementation is client only so remove some
more server side implementation.
Signed-off-by: David Kershner
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorbus_main.c|
From: Don Zickus
This patch moves the attributes to underneath the bus device correctly.
This will help remove a bunch of cruft from the code and let the kernel
infrastructure manage the sysfs files instead of the driver.
Signed-off-by: Don Zickus
Signed-off-by: Benjamin Romer
---
drivers/sta
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchannel.c | 6 +-
drivers/staging/unisys/visorutil/memregion.h| 1 -
drivers/staging/unisys/visorutil/memregion_direct.c | 9 -
3 files changed, 5 inse
From: Erik Arfvidson
This patch reorganizes, aligns, and corrects grammar mistakes on
comments.
Signed-off-by: Erik Arfvidson
Signed-off-by: Benjamin Romer
---
.../common-spar/include/channels/iochannel.h | 240 +++--
1 file changed, 124 insertions(+), 116 deletions(-)
From: David Kershner
Get rid of unused values in the enum.
Signed-off-by: David Kershner
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/include/diagchannel.h | 32 +++-
1 file changed, 12 insertions(+), 20 deletions(-)
diff --git a/drivers/staging/unisys/inc
From: Don Zickus
This patch is an attempt to help hide the channel info behind
accessory functions. I was trying to keep visorchannel as private
as possible.
The only function missing that seemed to be needed for now was
the ability to set the clientpartition. So I expose that here.
Signed-of
From: Don Zickus
Mimicing what other drivers do, this seems appropriate. Yeah, it
is a bus, but it is a bus _device_. This makes things work better
and smoother. Now the sysfs looks like
[root@dhcp-17-174 visorbus]# ls -l /sys/bus/visorbus/devices/
total 0
lrwxrwxrwx. 1 root root 0 Apr 17 16:
From: Don Zickus
The conversion to visor_device caused some compile issues.The main
problem was the new fields in 'struct visor_device' were not public.
Remove one that wasn't being used for now.
struct irq_info intr
Signed-off-by: Don Zickus
Signed-off-by: Benjamin Romer
---
drivers/staging
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorutil/memregion.h| 6 +-
drivers/staging/unisys/visorutil/memregion_direct.c | 6 --
2 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/drivers/staging/unisys
From: Prarit Bhargava
visorchannel_funcs.c is a remnant of the separate visorchannel
directory. It should be called visorchannel now.
Signed-off-by: Prarit Bhargava
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/Makefile | 2 +-
drivers/staging/unisys/visorbus/
From: Erik Arfvidson
this patch removes unused chipset command on the guest
CONTROLVM_CHIPSET_SHUTDOWN
Signed-off-by: Erik Arfvidson
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/common-spar/include/channels/controlvmchannel.h | 1 -
1 file changed, 1 deletion(-)
diff --git
a/dri
From: Don Zickus
Handling the sysfs attributes become easier to deal with when you can just
run container_of(dev) to get devdata.
Signed-off-by: Don Zickus
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorbus_main.c | 28 -
1 file changed, 9 inser
From: Don Zickus
Remove stale code.
Signed-off-by: Don Zickus
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorbus_main.c | 32 -
1 file changed, 32 deletions(-)
diff --git a/drivers/staging/unisys/visorbus/visorbus_main.c
b/drivers/staging/unis
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchipset.c | 201 +
1 file changed, 4 insertions(+), 197 deletions(-)
diff --git a/drivers/staging/unisys/visorbus/visorchipset.c
b/drivers/staging/uni
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchannel.c | 9 +++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/unisys/visorbus/visorchannel.c
b/drivers/staging/unisys/visorbus/visorch
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchannel.c | 17 +++--
drivers/staging/unisys/visorutil/memregion.h| 1 -
drivers/staging/unisys/visorutil/memregion_direct.c | 16
3
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchannel.c | 15 ++-
drivers/staging/unisys/visorutil/memregion.h | 2 --
.../staging/unisys/visorutil/memregion_direct.c| 22 --
From: Erik Arfvidson
this patch simply migrates file.h functionality to visorchipset.h
Signed-off-by: Erik Arfvidson
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorchipset/file.c | 5 +++--
drivers/staging/unisys/visorchipset/file.h | 25 --
From: Jes Sorensen
In addition remove unused parser_init()
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchipset.c | 8 +---
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/drivers/staging/unisys/visorbus/visorchipset.c
b/
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchipset.c | 10 +-
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/staging/unisys/visorbus/visorchipset.c
b/drivers/staging/unisys/visorbus/visor
From: Jes Sorensen
Using a page is sufficient, and avoids the cost of vmalloc/vfree
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchannel.c | 9 +
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/unisys/
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 5 -
1 file changed, 5 deletions(-)
diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c
b/drivers/staging/unisys/visorchipset/visorc
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchannel.c | 14 +-
1 file changed, 5 insertions(+), 9 deletions(-)
diff --git a/drivers/staging/unisys/visorbus/visorchannel.c
b/drivers/staging/unisys/visorbus/v
From: Erik Arfvidson
This patch removes unused chipset feature
ULTRA_CHIPSET_FEATURE_PCIVBUS
Signed-off-by: Erik Arfvidson
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/common-spar/include/channels/controlvmchannel.h | 1 -
1 file changed, 1 deletion(-)
diff --git
a/drivers/stagi
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorchipset/globals.h | 2 --
drivers/staging/unisys/visorchipset/visorchipset.h | 2 ++
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/unisys/visorchip
From: Prarit Bhargava
visorbus_private.h is only included from visorbus_main.c and has no
other purpose. The code can be easily moved into visorbus_main.c.
Signed-off-by: Prarit Bhargava
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorbus_main.c| 27 +++-
d
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchipset.c | 37 +++---
1 file changed, 9 insertions(+), 28 deletions(-)
diff --git a/drivers/staging/unisys/visorbus/visorchipset.c
b/drivers/staging/unis
From: Erik Arfvidson
This patch removes CONTROL_VM disk messages from enum since they
are completely unused.
Signed-off-by: Erik Arfvidson
Signed-off-by: Benjamin Romer
---
.../staging/unisys/common-spar/include/channels/controlvmchannel.h | 5 -
1 file changed, 5 deletions(-)
diff --
From: Erik Arfvidson
This patch removes unused struct in the controlvm_channel message
and replaces it with a char reserved inorder to mantain same
message size.
Signed-off-by: Erik Arfvidson
Signed-off-by: Benjamin Romer
---
.../common-spar/include/channels/controlvmchannel.h | 20 +
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorutil/memregion.h | 2 -
.../staging/unisys/visorutil/memregion_direct.c| 52 +++---
2 files changed, 7 insertions(+), 47 deletions(-)
diff --git a/drivers/st
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchipset.c | 56 --
1 file changed, 56 deletions(-)
diff --git a/drivers/staging/unisys/visorbus/visorchipset.c
b/drivers/staging/unisys/visorbus/visor
From: Don Zickus
visorchannel seems to be a necessary component to visorbus and can never
function as a standalone module. Let's treat it like a visorbus feature
that is always enabled.
Signed-off-by: Don Zickus
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/Kconfig
From: Don Zickus
The visorchannel feature is rolled into visorbus now and its headers
are public under visorbus.h. Remove the unused driver, the old
header file and all the ccflag includes in the Makefile.
Also remove VISORCHANNEL from all Kconfigs as it is not needed.
Signed-off-by: Don Zicku
From: Erik Arfvidson
This patch removes visorutil directory, move periodic_work.c into
the visorbus directory.
Signed-off-by: Erik Arfvidson
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/Kconfig | 1 -
drivers/staging/unisys/visorbus/Makefile | 1 +
dr
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorchipset/visorchipset.h | 12
.../unisys/visorchipset/visorchipset_main.c| 32 --
2 files changed, 23 insertions(+), 21 deletions(-)
diff --git a/dr
From: David Kershner
Channel.h is used by all channels, it needs to be in include.
Controlvm Channel is only used by visorbus, it needs to just be there.
Signed-off-by: David Kershner
Signed-off-by: Benjamin Romer
---
.../unisys/common-spar/include/channels/channel.h | 590 --
From: Erik Arfvidson
This patch simply remove all unused #define's in iochannel.h
Signed-off-by: Erik Arfvidson
Signed-off-by: Benjamin Romer
---
.../common-spar/include/channels/iochannel.h | 137 -
1 file changed, 137 deletions(-)
diff --git a/drivers/staging/unis
From: Erik Arfvidson
removes visorchipset_umode.h and pass functionality to
visorchipset.h
Signed-off-by: Erik Arfvidson
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorchipset/file.c | 1 -
drivers/staging/unisys/visorchipset/visorchipset.h | 1 +
.../unisys/visorchip
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchipset.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/unisys/visorbus/visorchipset.c
b/drivers/staging/unisys/visorbus/visorchipset
From: Jes Sorensen
visorchannel's signal code should call visorchannel_write() directly.
This is more consistent and cleaner, and allows us to remove the last
memregion call.
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchannel.c | 34
The visorutil directory is still mentioned in the top level makefile for
the Unisys drivers, so remove it.
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/Makefile | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/staging/unisys/Makefile b/drivers/staging/unisys/Makefile
index
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorchipset/visorchipset.h | 1 -
drivers/staging/unisys/visorchipset/visorchipset_main.c | 1 -
2 files changed, 2 deletions(-)
diff --git a/drivers/staging/unisys/visorchipset/visor
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
.../staging/unisys/visorutil/memregion_direct.c| 28 +-
1 file changed, 17 insertions(+), 11 deletions(-)
diff --git a/drivers/staging/unisys/visorutil/memregion_direct.c
b/drivers/stagin
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchipset.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/staging/unisys/visorbus/visorchipset.c
b/drivers/staging/unisys/visorbus/visorchipset.c
index 9390ed6..e0f
From: Don Zickus
There was a bunch of channel creation checks before the
visorchannel_create function was called, moving some of those
checks inside. This keeps the outside code cleaner and handles
the situation where a caller forgets to make these checks.
Signed-off-by: Don Zickus
Signed-off-
From: Don Zickus
The visorbus driver has three _info structs lying around
(device, bus, channel) that store subsets of info from the
bigger structs.
Having these structs around make resource handling very difficult
and more complicated than it needs to be. Use the device
infrastructure and inst
From: Erik Arfvidson
This patch is a comment aligment and cleanup for
controlvmchannel.h.
Signed-off-by: Erik Arfvidson
Signed-off-by: Benjamin Romer
---
.../include/channels/controlvmchannel.h| 231 ++---
1 file changed, 107 insertions(+), 124 deletions(-)
diff -
From: Don Zickus
Convert the device attribute files to properly use visor_device.
This removes a whole bunch of checks and assumptions and simplifies
the code. Everything is straightforward.
No testing down as I can't mimic channel info correctl.
Signed-off-by: Don Zickus
Signed-off-by: Benja
From: David Kershner
Makefiles still had common-spar listed in ccflags.
This gets rid of them.
Signed-off-by: David Kershner
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/Makefile | 2 --
drivers/staging/unisys/visorchannel/Makefile | 2 --
2 files changed, 4 deletion
From: David Kershner
Get rid of common-spar/include/diagnostics/appos_subsystems.h.
No one is using it.
Signed-off-by: David Kershner
Signed-off-by: Benjamin Romer
---
.../include/diagnostics/appos_subsystems.h | 310 -
drivers/staging/unisys/include/uisutils.h
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchipset.c | 39 --
1 file changed, 39 deletions(-)
diff --git a/drivers/staging/unisys/visorbus/visorchipset.c
b/drivers/staging/unisys/visorbus/visor
From: Erik Arfvidson
This patch trasitions the include files and functions from file.c
and places them into visorchipset_main.c
Signed-off-by: Erik Arfvidson
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorchipset/Makefile | 2 +-
drivers/staging/unisys/visorchipset/file
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchipset.c | 40 +++---
1 file changed, 17 insertions(+), 23 deletions(-)
diff --git a/drivers/staging/unisys/visorbus/visorchipset.c
b/drivers/staging/uni
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
.../staging/unisys/visorutil/memregion_direct.c| 26 --
1 file changed, 9 insertions(+), 17 deletions(-)
diff --git a/drivers/staging/unisys/visorutil/memregion_direct.c
b/drivers/staging
From: David Kershner
remove uisqueue.h, uisthread.h, and uisutils.h
replace HOSTADDRESS with u64
remove "uisutils.h" from header list in visorchipset.c
Signed-off-by: David Kershner
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/include/uisqueue.h | 396
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorchipset/file.c | 12 ++--
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/staging/unisys/visorchipset/file.c
b/drivers/staging/unisys/visorchipset/file.c
From: Erik Arfvidson
This patch moves includes files and functions from parser.[ch] into
visorchipset.
Signed-off-by: Erik Arfvidson
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorbus_main.c| 2 +-
drivers/staging/unisys/visorchipset/Makefile | 2 +-
driv
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchannel.c | 7 +++
drivers/staging/unisys/visorutil/memregion.h| 3 ---
drivers/staging/unisys/visorutil/memregion_direct.c | 21 -
3 fil
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/visorbus/visorchannel.c | 11 +--
drivers/staging/unisys/visorutil/memregion.h| 2 --
drivers/staging/unisys/visorutil/memregion_direct.c | 12
3 files cha
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
drivers/staging/unisys/include/visorbus.h | 1 -
drivers/staging/unisys/visorbus/visorchannel.c | 53 ++
drivers/staging/unisys/visorchannel/globals.h | 1 -
drivers/staging
From: Jes Sorensen
Signed-off-by: Jes Sorensen
Signed-off-by: Benjamin Romer
---
.../unisys/visorchipset/visorchipset_main.c| 26 +++---
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c
b/drivers/st
From: David Kershner
Controlframework was only needed by controlvmchannel, move the
structures into that header file.
Signed-off-by: David Kershner
Signed-off-by: Benjamin Romer
---
.../include/channels/controlframework.h| 62 --
.../include/channels/controlvmc
1 - 100 of 175 matches
Mail list logo