Skip to content

Instantly share code, notes, and snippets.

spec:
containers:
- name: test-server
image: 172.16.45.2:5000/test-service:0.2.1-test
imagePullPolicy: Always
@rday
rday / benchmarks.sh
Created May 27, 2016 19:58
Benchmarks for different serialization libraries
➜ encoding git:(master) ✗ go test -bench=.
PASS
BenchmarkThriftSerialize-8 300000 3364 ns/op
BenchmarkJsonSerialize-8 200000 7623 ns/op
BenchmarkPbSerialize-8 200000 5578 ns/op
BenchmarkThriftDeserialize-8 200000 6390 ns/op
BenchmarkJsonDeserialize-8 100000 18291 ns/op
BenchmarkPbDeserialize-8 200000 7358 ns/op
ok code.wirelessregistry.com/util/encoding 8.812s
➜ encoding git:(master) ✗ go test -bench=.
--- a/sys/kern/kern_descrip.c
+++ b/sys/kern/kern_descrip.c
@@ -130,7 +130,8 @@ static int getmaxfd(struct thread *td);
* resource limit).
*
* Since threads may hold references to individual descriptor table
- * entries, the tables are never freed. Instead, they are placed on a
+ * entries, the tables are only freed if a process has one thread and
+ * the table has not been shared. Otherwise, they are placed on a
* linked list and freed only when the struct filedesc is released.
/**
* Make sure that processes with multiple threads don't have old
* file descriptor tables freed.
*/
#include <stdio.h>
#include <unistd.h>
#include <pthread.h>
void *dupfds()
{
@rday
rday / test.c
Last active July 8, 2016 02:07
/**
* Verify that single thread, unshared file descriptor tables are freed
*/
#include <stdio.h>
#include <unistd.h>
void dupfds()
{
int i, fd;
int fds[128];
@rday
rday / kern_prot.patch
Last active July 11, 2016 01:16
Don't sort gids that are already sorted
--- a/sys/kern/kern_prot.c
+++ b/sys/kern/kern_prot.c
@@ -2045,12 +2045,22 @@ crsetgroups_locked(struct ucred *cr, int ngrp, gid_t *groups)
int i;
int j;
gid_t g;
+ unsigned int sorted = 0;
KASSERT(cr->cr_agroups >= ngrp, ("cr_ngroups is too small"));