Displaying 8 results from an estimated 8 matches for "1073,8".
Did you mean:
107,8
2014 Oct 13
16
[LLVMdev] RFC: variable names
...My proposal is that we modify the LLVM Coding Conventions to have variable names start with a lowercase letter.
Index: CodingStandards.rst
===================================================================
--- CodingStandards.rst (revision 219065)
+++ CodingStandards.rst (working copy)
@@ -1073,8 +1073,8 @@
nouns and start with an upper-case letter (e.g. ``TextFileReader``).
* **Variable names** should be nouns (as they represent state). The name should
- be camel case, and start with an upper case letter (e.g. ``Leader`` or
- ``Boats``).
+ be camel case, and start with a lower...
2014 Oct 13
5
[LLVMdev] RFC: variable names
...ns to have variable
>> names start with a lowercase letter.
>>
>> Index: CodingStandards.rst
>> ===================================================================
>> --- CodingStandards.rst (revision 219065)
>> +++ CodingStandards.rst (working copy)
>> @@ -1073,8 +1073,8 @@
>> nouns and start with an upper-case letter (e.g. ``TextFileReader``).
>>
>> * **Variable names** should be nouns (as they represent state). The
>> name should
>> - be camel case, and start with an upper case letter (e.g. ``Leader`` or
>> - `...
2006 Aug 25
2
RFC: non-root ssh tun access
...de);
+#endif
if (sock < 0)
goto done;
c = channel_new("tun", SSH_CHANNEL_OPEN, sock, sock, -1,
diff -Nurd openssh-4.3p2.orig/ssh.c openssh-4.3p2/ssh.c
--- openssh-4.3p2.orig/ssh.c 2005-12-31 00:33:37.000000000 -0500
+++ openssh-4.3p2/ssh.c 2006-08-25 08:32:57.000000000 -0400
@@ -1073,8 +1073,13 @@
int fd;
debug("Requesting tun.");
+#if defined(SSH_TUN_LINUX)
+ if ((fd = tun_open(options.tun_local,
+ options.tun_open, original_real_uid)) >= 0) {
+#else
if ((fd = tun_open(options.tun_local,
options.tun_open)) >= 0) {
+#endif
c = channel...
2017 Jan 05
3
[PATCH net-next] net: make ndo_get_stats64 a void function
...>rx_packets += rpkts;
}
- return stats;
}
/* Local traffic destined to local address. Reinsert the packet to rx
diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c
index a479cd99911d..40f26b69beb1 100644
--- a/drivers/net/xen-netfront.c
+++ b/drivers/net/xen-netfront.c
@@ -1073,8 +1073,8 @@ static int xennet_change_mtu(struct net_device *dev, int mtu)
return 0;
}
-static struct rtnl_link_stats64 *xennet_get_stats64(struct net_device *dev,
- struct rtnl_link_stats64 *tot)
+static void xennet_get_stats64(struct net_device *dev,
+ struct rtnl_link_stat...
2017 Jan 05
3
[PATCH net-next] net: make ndo_get_stats64 a void function
...>rx_packets += rpkts;
}
- return stats;
}
/* Local traffic destined to local address. Reinsert the packet to rx
diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c
index a479cd99911d..40f26b69beb1 100644
--- a/drivers/net/xen-netfront.c
+++ b/drivers/net/xen-netfront.c
@@ -1073,8 +1073,8 @@ static int xennet_change_mtu(struct net_device *dev, int mtu)
return 0;
}
-static struct rtnl_link_stats64 *xennet_get_stats64(struct net_device *dev,
- struct rtnl_link_stats64 *tot)
+static void xennet_get_stats64(struct net_device *dev,
+ struct rtnl_link_stat...
2007 Apr 13
0
[954] branches/wxruby2/wxwidgets_282: Additions to Image API 2.6 -> 2.8, remove comment cruft
...and set a
</ins><span class="cx"> suitable mask colour for any newly exposed areas.
</span><span class="cx">
</span><span class="cx"> Returns the (modified) image itself.
</span><span class="lines">@@ -1011,8 +1073,8 @@
</span><span class="cx">
</span><span class="cx"> Depending on how Widgets has been configured, not all formats may be available.
</span><span class="cx">
</span><del>-Note: you can use "get_option_int":#...
2008 Nov 12
15
[PATCH][RFC][12+2][v3] A expanded CFQ scheduler for cgroups
This patchset expands traditional CFQ scheduler in order to support cgroups,
and improves old version.
Improvements are as following.
* Modularizing our new CFQ scheduler.
The expanded CFQ scheduler is registered/unregistered as new I/O
elevator scheduler called "cfq-cgroups". By this, the traditional CFQ
scheduler, which does not handle cgroups, and our new CFQ
2008 Nov 12
15
[PATCH][RFC][12+2][v3] A expanded CFQ scheduler for cgroups
This patchset expands traditional CFQ scheduler in order to support cgroups,
and improves old version.
Improvements are as following.
* Modularizing our new CFQ scheduler.
The expanded CFQ scheduler is registered/unregistered as new I/O
elevator scheduler called "cfq-cgroups". By this, the traditional CFQ
scheduler, which does not handle cgroups, and our new CFQ