Displaying 15 results from an estimated 15 matches for "56,20".
Did you mean:
54,20
2012 Aug 16
5
[PATCH] AMD, powernow: Update P-state directly when _PSD's CoordType is DOMAIN_COORD_TYPE_HW_ALL
# HG changeset patch
# User Boris Ostrovsky <boris.ostrovsky@amd.com>
# Date 1345135101 -7200
# Node ID 85190245a94d9945b7656c971ba36f7d1eff5c19
# Parent 6d56e31fe1e1dc793379d662a36ff1731760eb0c
AMD, powernow: Update P-state directly when _PSD''s CoordType is DOMAIN_COORD_TYPE_HW_ALL
When _PSD''s CoordType is DOMAIN_COORD_TYPE_HW_ALL (i.e. shared_type is
CPUFREQ_SHARED_TYPE_HW) which most often is the ca...
2011 Jul 05
6
[PATCH 1/7] ln: Check snprintf() return values
...-----
1 files changed, 15 insertions(+), 5 deletions(-)
diff --git a/usr/utils/ln.c b/usr/utils/ln.c
index e826eb8..257b33f 100644
--- a/usr/utils/ln.c
+++ b/usr/utils/ln.c
@@ -9,7 +9,7 @@
int main(int argc, char *argv[])
{
- int c, s, f;
+ int c, s, f, len;
char *p;
struct stat sb;
@@ -56,10 +56,20 @@ int main(int argc, char *argv[])
p = strrchr(argv[c], '/');
p++;
- if (S_ISDIR(sb.st_mode))
- snprintf(target, PATH_MAX, "%s/%s", argv[argc - 1], p);
- else
- snprintf(target, PATH_MAX, "%s", argv[argc - 1]);
+ if (S_ISDIR(sb.st_mode)) {
+ l...
2007 Jan 23
2
Re: [nut-commits] svn commit r731
...ot;stype.h"
> #include "ssl.h"
> #include "sstate.h"
> #include "desc.h"
> #include "neterr.h"
>
> +#define QUOTED(x) #x
> +
> /* externally-visible settings and pointers */
>
> upstype *firstups = NULL;
> @@ -56,20 +59,12 @@
>
> /* everything else */
>
> -static ctype *firstclient = NULL;
> -
> -static int listenfd, net_port = PORT;
> +static ctype *firstclient = NULL;
>
> /* default is to listen on all local interfaces */
> -#ifndef HAVE_IPV6
> -static struct in_...
2007 Apr 23
27
[PATCH 00/25] xen: Xen implementation for paravirt_ops
Hi Andi,
This series of patches implements the Xen paravirt-ops interface.
It applies to 2.6.21-rc7 + your patches + the last batch of pv_ops
patches I posted.
This patch generally restricts itself to Xen-specific parts of the tree,
though it does make a few small changes elsewhere.
These patches include:
- some helper routines for allocating address space and walking pagetables
- Xen
2007 Apr 23
27
[PATCH 00/25] xen: Xen implementation for paravirt_ops
Hi Andi,
This series of patches implements the Xen paravirt-ops interface.
It applies to 2.6.21-rc7 + your patches + the last batch of pv_ops
patches I posted.
This patch generally restricts itself to Xen-specific parts of the tree,
though it does make a few small changes elsewhere.
These patches include:
- some helper routines for allocating address space and walking pagetables
- Xen
2007 May 11
30
[patch 00/28]xen: Xen implementation for paravirt_ops
Hi Andi,
This series of patches implements the Xen paravirt-ops interface. It
applies to 2.6.21-git13 + patches-2.6.21-git7-070507-1.tar.gz (I think
"unwinder" is the only patch which doesn't apply to git13, and the
sched-clock patches are the only ones which this series actually
needs).
Changes since the last posting:
- More netfront review and cleanup
- Added ability to
2007 May 11
30
[patch 00/28]xen: Xen implementation for paravirt_ops
Hi Andi,
This series of patches implements the Xen paravirt-ops interface. It
applies to 2.6.21-git13 + patches-2.6.21-git7-070507-1.tar.gz (I think
"unwinder" is the only patch which doesn't apply to git13, and the
sched-clock patches are the only ones which this series actually
needs).
Changes since the last posting:
- More netfront review and cleanup
- Added ability to
2007 May 11
30
[patch 00/28]xen: Xen implementation for paravirt_ops
Hi Andi,
This series of patches implements the Xen paravirt-ops interface. It
applies to 2.6.21-git13 + patches-2.6.21-git7-070507-1.tar.gz (I think
"unwinder" is the only patch which doesn't apply to git13, and the
sched-clock patches are the only ones which this series actually
needs).
Changes since the last posting:
- More netfront review and cleanup
- Added ability to
2007 May 22
35
[patch 00/33] xen: Xen paravirt_ops implementation
...net/Makefile | 1
drivers/net/xen-netfront.c | 1995 ++++++++++++++++++++++++
drivers/xen/Makefile | 2
drivers/xen/grant-table.c | 582 +++++++
drivers/xen/xenbus/Makefile | 7
drivers/xen/xenbus/xenbus_client.c | 569 ++++++
drivers/xen/xenbus/xenbus_comms.c | 233 ++
drivers/xen/xenbus/xenbus_comms.h | 46
drivers/xen/xenbus/xenbus_probe.c | 935 +++++++++++
drivers/xen/xenbus/xenbus_probe.h | 74
drivers/xen/xenbus/xenbus_xs.c | 861 ++++++++++
include/asm-i386/irq.h...
2007 May 22
35
[patch 00/33] xen: Xen paravirt_ops implementation
...net/Makefile | 1
drivers/net/xen-netfront.c | 1995 ++++++++++++++++++++++++
drivers/xen/Makefile | 2
drivers/xen/grant-table.c | 582 +++++++
drivers/xen/xenbus/Makefile | 7
drivers/xen/xenbus/xenbus_client.c | 569 ++++++
drivers/xen/xenbus/xenbus_comms.c | 233 ++
drivers/xen/xenbus/xenbus_comms.h | 46
drivers/xen/xenbus/xenbus_probe.c | 935 +++++++++++
drivers/xen/xenbus/xenbus_probe.h | 74
drivers/xen/xenbus/xenbus_xs.c | 861 ++++++++++
include/asm-i386/irq.h...
2007 May 22
35
[patch 00/33] xen: Xen paravirt_ops implementation
...net/Makefile | 1
drivers/net/xen-netfront.c | 1995 ++++++++++++++++++++++++
drivers/xen/Makefile | 2
drivers/xen/grant-table.c | 582 +++++++
drivers/xen/xenbus/Makefile | 7
drivers/xen/xenbus/xenbus_client.c | 569 ++++++
drivers/xen/xenbus/xenbus_comms.c | 233 ++
drivers/xen/xenbus/xenbus_comms.h | 46
drivers/xen/xenbus/xenbus_probe.c | 935 +++++++++++
drivers/xen/xenbus/xenbus_probe.h | 74
drivers/xen/xenbus/xenbus_xs.c | 861 ++++++++++
include/asm-i386/irq.h...
2007 May 04
31
[patch 00/29] xen: Xen implementation for paravirt_ops
Hi Andi,
This series of patches implements the Xen paravirt-ops interface.
It applies to 2.6.21-git3 + ff patches-2.6.21-git3-070501-1.tar.gz.
Changes since the last posting:
- reviews of xenbus (me), netfront (hch, rusty, herbert xu) and
blockfront (hch), with most comments addressed. Netfront review
revealed a couple of real bugs, and the code for all three is looking
cleaner
2007 May 04
31
[patch 00/29] xen: Xen implementation for paravirt_ops
Hi Andi,
This series of patches implements the Xen paravirt-ops interface.
It applies to 2.6.21-git3 + ff patches-2.6.21-git3-070501-1.tar.gz.
Changes since the last posting:
- reviews of xenbus (me), netfront (hch, rusty, herbert xu) and
blockfront (hch), with most comments addressed. Netfront review
revealed a couple of real bugs, and the code for all three is looking
cleaner
2007 Apr 29
33
[patch 00/32] xen: Xen implementation for paravirt_ops
Hi Andi,
This series of patches implements the Xen paravirt-ops interface.
It applies to 2.6.21 + 2.6.21-070428-1 + the patches I've posted over
the last couple of days.
Changes since the last posting:
- update per review comments
- comment each file
- comment barrier use
- use common cpu sibling setup
- fixed a few minor bugs, specifically a traceirq mismatch warning
- some
2007 Apr 29
33
[patch 00/32] xen: Xen implementation for paravirt_ops
Hi Andi,
This series of patches implements the Xen paravirt-ops interface.
It applies to 2.6.21 + 2.6.21-070428-1 + the patches I've posted over
the last couple of days.
Changes since the last posting:
- update per review comments
- comment each file
- comment barrier use
- use common cpu sibling setup
- fixed a few minor bugs, specifically a traceirq mismatch warning
- some