This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Note: Developers writing applications for OS X do not need to incorporate | |
this code into their applications, since OS X provides a system service to | |
handle this for them. If every application developer were to link-in the | |
mDNSResponder code into their application, then we would end up with a | |
situation like the picture below: | |
+------------------+ +------------------+ +------------------+ | |
| Application 1 | | Application 2 | | Application 3 | | |
+------------------+ +------------------+ +------------------+ | |
| mDNS Core | | mDNS Core | | mDNS Core | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# | |
# Simple multiprocess log re-player for elliptics proxy | |
# | |
from hashlib import sha256 | |
from time import sleep | |
from urllib import request | |
from urllib.error import HTTPError |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CXX = $${CXX:-c++} | |
CXXFLAGS = -std=c++11 -O3 | |
CC = $${CC:-cc} | |
CFLAGS = -O3 | |
all: sort_cpp sort_c test | |
sort_cpp: sort.cpp | |
$(CXX) $(CXXFLAGS) $^ -o $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ grep -h Subject /place/mail/textdumps.2013-03-* | perl -pe 's/Subject: \[sendcore\] panic on //' | sort -u | grep ^ws[0-9] | perl -pe 's/ws[0-9]+-[0-9]+: //' | perl -pe 's/0x[0-f]+/<pointer>/g' | sort | uniq -c | sort -n | |
1 NMI indicates hardware failure | |
1 ffs_write: type <pointer> 0 (0,161) | |
1 initiate_write_inodeblock_ufs2: already started | |
2 Bad effnlink fip <pointer>, fdp <pointer>, tdp <pointer> | |
4 softdep_setup_inomapdep: dependency <pointer> for newinode already exists | |
5 handle_written_inodeblock: live inodedep <pointer> | |
5 softdep_deallocate_dependencies: unrecovered I/O error | |
6 ffs_blkfree_cg: freeing free frag | |
6 spin lock held too long |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <sys/mman.h> | |
#include <err.h> | |
#include <fcntl.h> | |
#include <signal.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#define MAP_NAM "/var/tmp/test_map_0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/libowfat-0.29/CAS.h b/libowfat-0.29/CAS.h | |
index 27b3219..1308050 100644 | |
--- a/libowfat-0.29/CAS.h | |
+++ b/libowfat-0.29/CAS.h | |
@@ -53,7 +53,7 @@ static inline size_t atomic_add_return(size_t* x,size_t val) { | |
/* *x += val; */ | |
static inline void atomic_add(size_t* x,size_t val) { | |
#ifdef USE_BUILTINS | |
- return __sync_add_and_fetch(x,val); | |
+ __sync_add_and_fetch(x,val); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static const struct ixgbe_info *ixgbe_info_tbl[] = { | |
[board_82598] = &ixgbe_82598_info, | |
[board_82599] = &ixgbe_82599_info, | |
[board_X540] = &ixgbe_X540_info, | |
}; | |
/* ixgbe_pci_tbl - PCI Device ID Table | |
* | |
* Wildcard entries (PCI_ANY_ID) should come last | |
* Last entry must be all 0s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Copyright (c) 2015, Intel Corporation | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are met: | |
# | |
# * Redistributions of source code must retain the above copyright notice, | |
# this list of conditions and the following disclaimer. | |
# * Redistributions in binary form must reproduce the above copyright |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from itertools import imap | |
fact_eval1 = lambda n: eval("*".join(imap(str, xrange(1, n + 1)))) if n > 1 else 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ numactl --membind=1 --cpunodebind=1 dd if=/dev/zero of=/dev/null bs=64M count=100 | |
100+0 records in | |
100+0 records out | |
6710886400 bytes (6.7 GB) copied, 0.911091 s, 7.4 GB/s | |
$ numactl --membind=0 --cpunodebind=1 dd if=/dev/zero of=/dev/null bs=64M count=100 | |
100+0 records in | |
100+0 records out | |
6710886400 bytes (6.7 GB) copied, 1.28833 s, 5.2 GB/s |