/linux-4.4.14/tools/perf/tests/ |
D | hists_output.c | 95 struct hist_entry *he; in del_hist_entries() local 110 he = rb_entry(node, struct hist_entry, rb_node); in del_hist_entries() 112 rb_erase(&he->rb_node_in, root_in); in del_hist_entries() 113 hist_entry__delete(he); in del_hist_entries() 119 #define COMM(he) (thread__comm_str(he->thread)) argument 120 #define DSO(he) (he->ms.map->dso->short_name) argument 121 #define SYM(he) (he->ms.sym->name) argument 122 #define CPU(he) (he->cpu) argument 123 #define PID(he) (he->thread->tid) argument 130 struct hist_entry *he; in test1() local [all …]
|
D | hists_common.c | 171 struct hist_entry *he; in print_hists_in() local 173 he = rb_entry(node, struct hist_entry, rb_node_in); in print_hists_in() 175 if (!he->filtered) { in print_hists_in() 177 i, thread__comm_str(he->thread), in print_hists_in() 178 he->ms.map->dso->short_name, in print_hists_in() 179 he->ms.sym->name, he->stat.period); in print_hists_in() 198 struct hist_entry *he; in print_hists_out() local 200 he = rb_entry(node, struct hist_entry, rb_node); in print_hists_out() 202 if (!he->filtered) { in print_hists_out() 204 i, thread__comm_str(he->thread), he->thread->tid, in print_hists_out() [all …]
|
D | hists_link.c | 66 struct hist_entry *he; in add_hist_entries() local 92 he = __hists__add_entry(hists, &al, NULL, in add_hist_entries() 94 if (he == NULL) { in add_hist_entries() 118 he = __hists__add_entry(hists, &al, NULL, in add_hist_entries() 120 if (he == NULL) { in add_hist_entries() 167 struct hist_entry *he; in __validate_match() local 169 he = rb_entry(node, struct hist_entry, rb_node_in); in __validate_match() 171 if (hist_entry__has_pairs(he)) { in __validate_match() 174 he->thread, he->ms.map, he->ms.sym)) { in __validate_match() 219 struct hist_entry *he; in __validate_link() local [all …]
|
D | hists_cumulate.c | 129 struct hist_entry *he; in del_hist_entries() local 144 he = rb_entry(node, struct hist_entry, rb_node); in del_hist_entries() 146 rb_erase(&he->rb_node_in, root_in); in del_hist_entries() 147 hist_entry__delete(he); in del_hist_entries() 153 #define COMM(he) (thread__comm_str(he->thread)) argument 154 #define DSO(he) (he->ms.map->dso->short_name) argument 155 #define SYM(he) (he->ms.sym->name) argument 156 #define CPU(he) (he->cpu) argument 157 #define PID(he) (he->thread->tid) argument 158 #define DEPTH(he) (he->callchain->max_depth) argument [all …]
|
/linux-4.4.14/tools/perf/util/ |
D | hist.c | 13 struct hist_entry *he); 15 struct hist_entry *he); 17 struct hist_entry *he); 19 struct hist_entry *he); 246 static bool hists__decay_entry(struct hists *hists, struct hist_entry *he) in hists__decay_entry() argument 248 u64 prev_period = he->stat.period; in hists__decay_entry() 254 he_stat__decay(&he->stat); in hists__decay_entry() 256 he_stat__decay(he->stat_acc); in hists__decay_entry() 258 diff = prev_period - he->stat.period; in hists__decay_entry() 261 if (!he->filtered) in hists__decay_entry() [all …]
|
D | sort.c | 70 static int hist_entry__thread_snprintf(struct hist_entry *he, char *bf, in hist_entry__thread_snprintf() argument 73 const char *comm = thread__comm_str(he->thread); in hist_entry__thread_snprintf() 76 return repsep_snprintf(bf, size, "%5d:%-*.*s", he->thread->tid, in hist_entry__thread_snprintf() 109 static int hist_entry__comm_snprintf(struct hist_entry *he, char *bf, in hist_entry__comm_snprintf() argument 112 return repsep_snprintf(bf, size, "%-*.*s", width, width, comm__str(he->comm)); in hist_entry__comm_snprintf() 164 static int hist_entry__dso_snprintf(struct hist_entry *he, char *bf, in hist_entry__dso_snprintf() argument 167 return _hist_entry__dso_snprintf(he->ms.map, bf, size, width); in hist_entry__dso_snprintf() 267 static int hist_entry__sym_snprintf(struct hist_entry *he, char *bf, in hist_entry__sym_snprintf() argument 270 return _hist_entry__sym_snprintf(he->ms.map, he->ms.sym, he->ip, in hist_entry__sym_snprintf() 271 he->level, bf, size, width); in hist_entry__sym_snprintf() [all …]
|
D | sort.h | 128 static inline bool hist_entry__has_pairs(struct hist_entry *he) in hist_entry__has_pairs() argument 130 return !list_empty(&he->pairs.node); in hist_entry__has_pairs() 133 static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he) in hist_entry__next_pair() argument 135 if (hist_entry__has_pairs(he)) in hist_entry__next_pair() 136 return list_entry(he->pairs.node.next, struct hist_entry, pairs.node); in hist_entry__next_pair() 141 struct hist_entry *he) in hist_entry__add_pair() argument 143 list_add_tail(&pair->pairs.node, &he->pairs.head); in hist_entry__add_pair() 146 static inline float hist_entry__get_percent_limit(struct hist_entry *he) in hist_entry__get_percent_limit() argument 148 u64 period = he->stat.period; in hist_entry__get_percent_limit() 149 u64 total_period = hists__total_period(he->hists); in hist_entry__get_percent_limit() [all …]
|
D | hist.h | 98 struct hist_entry *he; member 126 int hist_entry__sort_snprintf(struct hist_entry *he, char *bf, size_t size, 128 void hist_entry__delete(struct hist_entry *he); 164 void hists__calc_col_len(struct hists *hists, struct hist_entry *he); 202 struct hist_entry *he); 204 struct hist_entry *he); 274 typedef u64 (*hpp_field_fn)(struct hist_entry *he); 279 struct hist_entry *he, hpp_field_fn get_field, 282 struct hist_entry *he, hpp_field_fn get_field, 316 int hist_entry__tui_annotate(struct hist_entry *he, struct perf_evsel *evsel, [all …]
|
D | annotate.h | 152 int hist_entry__inc_addr_samples(struct hist_entry *he, int evidx, u64 addr); 159 int hist_entry__annotate(struct hist_entry *he, size_t privsize);
|
D | callchain.h | 200 int hist_entry__append_callchain(struct hist_entry *he, struct perf_sample *sample);
|
D | annotate.c | 662 int hist_entry__inc_addr_samples(struct hist_entry *he, int evidx, u64 ip) in hist_entry__inc_addr_samples() argument 664 return symbol__inc_addr_samples(he->ms.sym, he->ms.map, evidx, ip); in hist_entry__inc_addr_samples() 1638 int hist_entry__annotate(struct hist_entry *he, size_t privsize) in hist_entry__annotate() argument 1640 return symbol__annotate(he->ms.sym, he->ms.map, privsize); in hist_entry__annotate()
|
D | callchain.c | 724 int hist_entry__append_callchain(struct hist_entry *he, struct perf_sample *sample) in hist_entry__append_callchain() argument 728 return callchain_append(he->callchain, &callchain_cursor, sample->period); in hist_entry__append_callchain()
|
/linux-4.4.14/net/netfilter/ |
D | nft_hash.c | 54 const struct nft_hash_elem *he = data; in nft_hash_obj() local 56 return jhash(nft_set_ext_key(&he->ext), len, seed); in nft_hash_obj() 63 const struct nft_hash_elem *he = ptr; in nft_hash_cmp() local 65 if (memcmp(nft_set_ext_key(&he->ext), x->key, x->set->klen)) in nft_hash_cmp() 67 if (nft_set_elem_expired(&he->ext)) in nft_hash_cmp() 69 if (!nft_set_elem_active(&he->ext, x->genmask)) in nft_hash_cmp() 78 const struct nft_hash_elem *he; in nft_hash_lookup() local 85 he = rhashtable_lookup_fast(&priv->ht, &arg, nft_hash_params); in nft_hash_lookup() 86 if (he != NULL) in nft_hash_lookup() 87 *ext = &he->ext; in nft_hash_lookup() [all …]
|
D | xt_hashlimit.c | 286 const struct dsthash_ent *he) in select_all() argument 292 const struct dsthash_ent *he) in select_gc() argument 294 return time_after_eq(jiffies, he->expires); in select_gc() 299 const struct dsthash_ent *he)) in htable_selective_cleanup() argument
|
/linux-4.4.14/tools/perf/ |
D | builtin-diff.c | 220 static double period_percent(struct hist_entry *he, u64 period) in period_percent() argument 222 u64 total = hists__total_period(he->hists); in period_percent() 227 static double compute_delta(struct hist_entry *he, struct hist_entry *pair) in compute_delta() argument 229 double old_percent = period_percent(he, he->stat.period); in compute_delta() 237 static double compute_ratio(struct hist_entry *he, struct hist_entry *pair) in compute_ratio() argument 239 double old_period = he->stat.period ?: 1; in compute_ratio() 247 static s64 compute_wdiff(struct hist_entry *he, struct hist_entry *pair) in compute_wdiff() argument 249 u64 old_period = he->stat.period; in compute_wdiff() 259 static int formula_delta(struct hist_entry *he, struct hist_entry *pair, in formula_delta() argument 262 u64 he_total = he->hists->stats.total_period; in formula_delta() [all …]
|
D | builtin-annotate.c | 55 struct hist_entry *he; in perf_evsel__add_sample() local 75 he = __hists__add_entry(hists, al, NULL, NULL, NULL, 1, 1, 0, true); in perf_evsel__add_sample() 76 if (he == NULL) in perf_evsel__add_sample() 79 ret = hist_entry__inc_addr_samples(he, evsel->idx, al->addr); in perf_evsel__add_sample() 113 static int hist_entry__tty_annotate(struct hist_entry *he, in hist_entry__tty_annotate() argument 117 return symbol__tty_annotate(he->ms.sym, he->ms.map, evsel, in hist_entry__tty_annotate() 129 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node); in hists__find_annotations() local 132 if (he->ms.sym == NULL || he->ms.map->dso->annotate_warned) in hists__find_annotations() 135 notes = symbol__annotation(he->ms.sym); in hists__find_annotations() 147 int (*annotate)(struct hist_entry *he, in hists__find_annotations() [all …]
|
D | builtin-top.c | 90 static int perf_top__parse_source(struct perf_top *top, struct hist_entry *he) in perf_top__parse_source() argument 97 if (!he || !he->ms.sym) in perf_top__parse_source() 100 sym = he->ms.sym; in perf_top__parse_source() 101 map = he->ms.map; in perf_top__parse_source() 133 top->sym_filter_entry = he; in perf_top__parse_source() 140 static void __zero_source_counters(struct hist_entry *he) in __zero_source_counters() argument 142 struct symbol *sym = he->ms.sym; in __zero_source_counters() 174 struct hist_entry *he, in perf_top__record_precise_ip() argument 181 if (he == NULL || he->ms.sym == NULL || in perf_top__record_precise_ip() 183 top->sym_filter_entry->ms.sym != he->ms.sym) && use_browser != 1)) in perf_top__record_precise_ip() [all …]
|
D | builtin-report.c | 99 struct hist_entry *he = iter->he; in hist_iter__report_callback() local 111 bi = he->branch_info; in hist_iter__report_callback() 119 mi = he->mem_info; in hist_iter__report_callback() 124 err = hist_entry__inc_addr_samples(he, evsel->idx, al->addr); in hist_iter__report_callback() 128 err = hist_entry__inc_addr_samples(he, evsel->idx, in hist_iter__report_callback() 131 err = hist_entry__inc_addr_samples(he, evsel->idx, al->addr); in hist_iter__report_callback()
|
/linux-4.4.14/kernel/locking/ |
D | qspinlock_paravirt.h | 94 #define for_each_hash_entry(he, offset, hash) \ argument 95 for (hash &= ~(PV_HE_PER_LINE - 1), he = &pv_lock_hash[hash], offset = 0; \ 97 offset++, he = &pv_lock_hash[(hash + offset) & ((1 << pv_lock_hash_bits) - 1)]) 102 struct pv_hash_entry *he; in pv_hash() local 104 for_each_hash_entry(he, offset, hash) { in pv_hash() 105 if (!cmpxchg(&he->lock, NULL, lock)) { in pv_hash() 106 WRITE_ONCE(he->node, node); in pv_hash() 107 return &he->lock; in pv_hash() 126 struct pv_hash_entry *he; in pv_unhash() local 129 for_each_hash_entry(he, offset, hash) { in pv_unhash() [all …]
|
/linux-4.4.14/tools/perf/ui/ |
D | hist.c | 18 static int __hpp__fmt(struct perf_hpp *hpp, struct hist_entry *he, in __hpp__fmt() argument 23 struct hists *hists = he->hists; in __hpp__fmt() 33 percent = 100.0 * get_field(he) / total; in __hpp__fmt() 37 ret = hpp__call_print_fn(hpp, print_fn, fmt, len, get_field(he)); in __hpp__fmt() 46 list_for_each_entry(pair, &he->pairs.head, pairs.node) { in __hpp__fmt() 108 struct hist_entry *he, hpp_field_fn get_field, in hpp__fmt() argument 114 return __hpp__fmt(hpp, he, get_field, fmtstr, 1, in hpp__fmt() 123 return __hpp__fmt(hpp, he, get_field, fmtstr, len, print_fn, fmt_percent); in hpp__fmt() 127 struct hist_entry *he, hpp_field_fn get_field, in hpp__fmt_acc() argument 135 return hpp__fmt(fmt, hpp, he, get_field, fmtstr, print_fn, fmt_percent); in hpp__fmt_acc() [all …]
|
/linux-4.4.14/tools/perf/ui/stdio/ |
D | hist.c | 263 static size_t hist_entry_callchain__fprintf(struct hist_entry *he, in hist_entry_callchain__fprintf() argument 269 return callchain__fprintf_graph(fp, &he->sorted_chain, in hist_entry_callchain__fprintf() 271 he->stat_acc->period : he->stat.period, in hist_entry_callchain__fprintf() 275 return callchain__fprintf_graph(fp, &he->sorted_chain, total_samples, in hist_entry_callchain__fprintf() 279 return callchain__fprintf_flat(fp, &he->sorted_chain, total_samples); in hist_entry_callchain__fprintf() 290 static size_t hist_entry__callchain_fprintf(struct hist_entry *he, in hist_entry__callchain_fprintf() argument 307 left_margin -= thread__comm_len(he->thread); in hist_entry__callchain_fprintf() 311 return hist_entry_callchain__fprintf(he, total_period, left_margin, fp); in hist_entry__callchain_fprintf() 314 static int hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp) in hist_entry__snprintf() argument 322 if (symbol_conf.exclude_other && !he->parent) in hist_entry__snprintf() [all …]
|
/linux-4.4.14/tools/perf/ui/browsers/ |
D | hists.c | 62 struct hist_entry *he = in hist_browser__get_folding() local 65 if (he->unfolded) in hist_browser__get_folding() 66 unfolded_rows += he->nr_rows; in hist_browser__get_folding() 141 static char hist_entry__folded(const struct hist_entry *he) in hist_entry__folded() argument 143 return he->has_children ? tree__folded_sign(he->unfolded) : ' '; in hist_entry__folded() 211 static bool hist_entry__toggle_fold(struct hist_entry *he) in hist_entry__toggle_fold() argument 213 if (!he) in hist_entry__toggle_fold() 216 if (!he->has_children) in hist_entry__toggle_fold() 219 he->unfolded = !he->unfolded; in hist_entry__toggle_fold() 285 static void hist_entry__init_have_children(struct hist_entry *he) in hist_entry__init_have_children() argument [all …]
|
D | annotate.c | 887 int hist_entry__tui_annotate(struct hist_entry *he, struct perf_evsel *evsel, in hist_entry__tui_annotate() argument 894 return map_symbol__tui_annotate(&he->ms, evsel, hbt); in hist_entry__tui_annotate()
|
/linux-4.4.14/include/linux/ |
D | rhashtable.h | 200 const struct rhash_head *he) in rht_obj() argument 202 return (char *)he - ht->p.head_offset; in rht_obj() 244 const struct rhash_head *he, const struct rhashtable_params params) in rht_head_hashfn() argument 246 const char *ptr = rht_obj(ht, he); in rht_head_hashfn() 537 struct rhash_head *he; in rhashtable_lookup_fast() local 545 rht_for_each_rcu(he, tbl, hash) { in rhashtable_lookup_fast() 547 params.obj_cmpfn(&arg, rht_obj(ht, he)) : in rhashtable_lookup_fast() 548 rhashtable_compare(&arg, rht_obj(ht, he))) in rhashtable_lookup_fast() 551 return rht_obj(ht, he); in rhashtable_lookup_fast() 750 struct rhash_head *he; in __rhashtable_remove_fast() local [all …]
|
/linux-4.4.14/tools/perf/ui/gtk/ |
D | hists.c | 39 static u64 he_get_##_field(struct hist_entry *he) \ 41 return he->stat._field; \ 46 struct hist_entry *he) \ 48 return hpp__fmt(fmt, hpp, he, he_get_##_field, " %*.2f%%", \ 53 static u64 he_get_acc_##_field(struct hist_entry *he) \ 55 return he->stat_acc->_field; \ 60 struct hist_entry *he) \ 62 return hpp__fmt_acc(fmt, hpp, he, he_get_acc_##_field, " %*.2f%%", \
|
D | annotate.c | 229 int hist_entry__gtk_annotate(struct hist_entry *he, in hist_entry__gtk_annotate() argument 233 return symbol__gtk_annotate(he->ms.sym, he->ms.map, evsel, hbt); in hist_entry__gtk_annotate()
|
D | gtk.h | 62 int hist_entry__gtk_annotate(struct hist_entry *he,
|
/linux-4.4.14/fs/reiserfs/ |
D | README | 20 under the GPL, because he wants to know if it is okay to do so and put 21 a check in the mail to you (for non-trivial improvements) when he 23 though he feels motivated to motivate contributors, and you can surely 88 Vladimir Saveljev was one of the programmers, and he worked long hours 89 writing the cleanest code. He always made the effort to be the best he 92 to work the way he did, he is one of the most selfless men I know. 102 align files), and he invented and implemented indirect items and 110 curious, because he never really understood the value of our project, 112 general, but he was sure that he ought to be controlling it. Every 113 innovation had to be forced past him while he was with us. He added [all …]
|
/linux-4.4.14/drivers/scsi/libsas/ |
D | sas_dump.c | 56 void sas_dprint_hae(struct sas_ha_struct *sas_ha, enum ha_event he) in sas_dprint_hae() argument 59 sas_hae_str[he]); in sas_dprint_hae()
|
D | sas_dump.h | 29 void sas_dprint_hae(struct sas_ha_struct *sas_ha, enum ha_event he);
|
/linux-4.4.14/Documentation/filesystems/ |
D | quota.txt | 10 resource (unless he has CAP_SYS_RESOURCE capability). User is allowed to exceed 13 more space/inodes until he frees enough of them to get below softlimit. 26 when user is using a graphical desktop he usually cannot see the message.
|
D | coda.txt | 264 33.. TThhee mmeessssaaggee llaayyeerr 377 44.. TThhee iinntteerrffaaccee aatt tthhee ccaallll lleevveell 420 …44..11.. DDaattaa ssttrruuccttuurreess sshhaarreedd bbyy tthhee kke… 511 44..22.. TThhee ppiiooccttll iinntteerrffaaccee 1426 55.. TThhee mmiinniiccaacchhee aanndd ddoowwnnccaallllss
|
D | romfs.txt | 165 one would want to write _anything_ to a file system, he still needs
|
D | ntfs.txt | 129 he/she has read and write permissions, as well as
|
D | proc.txt | 73 to create this document, as well as the additional information he provided.
|
/linux-4.4.14/drivers/video/fbdev/matrox/ |
D | matroxfb_misc.c | 191 unsigned int hd, hs, he, hbe, ht; in matroxfb_vgaHWinit() local 241 he = m->HSyncEnd >> 3; in matroxfb_vgaHWinit() 250 he >>= 1; in matroxfb_vgaHWinit() 259 he <<= 1; in matroxfb_vgaHWinit() 265 he = he - 1; in matroxfb_vgaHWinit() 282 hw->CRTCEXT[5] = (hs + he - ht) >> 1; in matroxfb_vgaHWinit() 308 hw->CRTC[5] = ((hbe & 0x20) << 2) | (he & 0x1F); in matroxfb_vgaHWinit()
|
/linux-4.4.14/drivers/atm/ |
D | Makefile | 32 obj-$(CONFIG_ATM_HE) += he.o
|
/linux-4.4.14/Documentation/ |
D | ManagementStyle | 103 eyes and say "Oops, he did it again". 171 scan nearly as well. But I'm sure he thought about it. 213 for taking the fall, he'll feel good about not getting blamed, and the 218 _in_private_ that he screwed up. Not just so he can avoid it in the 219 future, but so that he knows he owes you one. And, perhaps even more 220 importantly, he's also likely the person who can fix it. Because, let's
|
D | hw_random.txt | 89 Special thanks to Matt Sottek. I did the "guts", he
|
D | debugging-via-ohci1394.txt | 67 and he implemented fast system dump (alpha version - read README.txt):
|
D | padata.txt | 73 If a user is interested in padata cpumask changes, he can register to
|
D | vgaarbiter.txt | 178 Benjamin Herrenschmidt (IBM?) started this work when he discussed such design
|
D | applying-patches.txt | 307 by Linus whenever he deems the current git (the kernel's source management
|
D | HOWTO | 598 to be based on text he had written, and to Randy Dunlap and Gerrit
|
D | SubmittingPatches | 509 development of the patch, or that he/she was in the patch's delivery path.
|
/linux-4.4.14/Documentation/devicetree/bindings/net/ |
D | broadcom-bcm87xx.txt | 13 he result to yield the new register value. If the third cell has a
|
/linux-4.4.14/Documentation/crypto/ |
D | descore-readme.txt | 89 it's 39%-106% slower. because he was interested in fast crypt(3) and 90 password-cracking applications, he also used the same ideas to 92 (at some point i may do the same in my package). he also implements 101 he claims to use 280k of tables but the iteration calculation seems 109 he seems to have included a lot of special case code 156 by the larger table size. in his case he didn't realize you don't need to keep 161 the table size. in fairness though he might be encoding something particular
|
/linux-4.4.14/Documentation/usb/ |
D | wusb-cbaf | 47 authenticate the device (when we see the CDID he uses to id
|
D | WUSB-Design-overview.txt | 230 the BEACON CACHE (/uwb_beca/). If he receives a number of beacons from 231 the same device, he considers it to be 'onair' and creates a new device 312 sees a new connection, so he moves on to enable the fake port with a reset.
|
/linux-4.4.14/drivers/video/fbdev/ |
D | asiliantfb.c | 178 unsigned he = (p->var.xres + p->var.right_margin + p->var.hsync_len) / 8; in asiliant_set_timing() local 198 write_cr(0x05, (((ht - 1) & 0x20) <<2) | (he & 0x1f)); in asiliant_set_timing()
|
D | tdfxfb.c | 549 u32 hd, hs, he, ht, hbs, hbe; in tdfxfb_set_par() local 581 he = (hsyncend >> 3) - 1; in tdfxfb_set_par() 646 reg.crt[0x05] = ((hbe & 0x20) << 2) | (he & 0x1f); in tdfxfb_set_par() 671 ((he & 0x20) << 2)); in tdfxfb_set_par()
|
/linux-4.4.14/lib/ |
D | rhashtable.c | 37 const struct rhash_head *he) in head_hashfn() argument 39 return rht_head_hashfn(ht, tbl, he, ht->p); in head_hashfn()
|
/linux-4.4.14/Documentation/video4linux/bttv/ |
D | PROBLEMS | 25 with his S3 868 went away when he upgraded to XFree 3.2.
|
/linux-4.4.14/drivers/staging/lustre/lustre/include/lustre/ |
D | lustre_user.h | 728 static inline void hsm_set_cl_event(int *flags, enum hsm_event he) in hsm_set_cl_event() argument 730 *flags |= (he << CLF_HSM_EVENT_L); in hsm_set_cl_event()
|
/linux-4.4.14/Documentation/video4linux/ |
D | meye.txt | 94 MEYEIOC_G_PARAMS, change what he likes and then issue the
|
/linux-4.4.14/Documentation/vm/ |
D | idle_page_tracking.txt | 53 are not reclaimable, he or she can filter them out using /proc/kpageflags.
|
D | unevictable-lru.txt | 253 In Nick's patch, he used one of the struct page LRU list link fields as a count
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx5/core/ |
D | main.c | 302 u8 he; member 458 he_in.he = MLX5_SET_HOST_ENDIANNESS; in set_hca_ctrl()
|
/linux-4.4.14/Documentation/development-process/ |
D | 6.Followthrough | 94 kernel development community; he can often unjam a situation which seems to 97 in mind, of course, that he may not agree with you either.
|
D | 5.Posting | 199 - Signed-off-by: this is a developer's certification that he or she has
|
D | 2.Process | 229 that, sometimes, he looks quite closely. But, as a general rule, Linus
|
/linux-4.4.14/Documentation/scsi/ |
D | scsi-changer.txt | 23 changer device this is a "don't care", he *only* shuffles around the
|
D | advansys.txt | 206 AscWaitTixISRDone() which he found necessary to make the
|
D | osst.txt | 174 and always tried to answer HW or FW related questions. Furthermore, he
|
D | LICENSE.qla4xxx | 233 system; it is up to the author/donor to decide if he or she is willing
|
D | LICENSE.qla2xxx | 234 system; it is up to the author/donor to decide if he or she is willing
|
D | st.txt | 14 1. Each user can specify the tape parameters he/she wants to use
|
/linux-4.4.14/Documentation/scheduler/ |
D | sched-rt-group.txt | 22 root only and assumes root knows what he is doing.
|
/linux-4.4.14/fs/affs/ |
D | Changes | 129 patches he did. They're marked (BH). Thanks, Bill!
|
/linux-4.4.14/Documentation/DocBook/media/ |
D | fieldseq_bt.gif.b64 | 237 MjQpJuc5y+he+OouR/AFpvmqZ3344t9F/AwmQGfFzvn6iKFTgOfz6FmuIxE0865zj0aPJNGLNk+j
|
/linux-4.4.14/Documentation/networking/ |
D | netdev-FAQ.txt | 118 for networking, Dave collects up patches he deems critical for the
|
D | LICENSE.qlcnic | 232 system; it is up to the author/donor to decide if he or she is willing
|
D | LICENSE.qlge | 232 system; it is up to the author/donor to decide if he or she is willing
|
/linux-4.4.14/drivers/tty/serial/8250/ |
D | Kconfig | 321 which he wouldn't see otherwise. The getty has still to be configured
|
/linux-4.4.14/Documentation/power/ |
D | freezing-of-tasks.txt | 128 Although Linus Torvalds doesn't like the freezing of tasks, he said this in one
|
/linux-4.4.14/Documentation/cgroups/ |
D | cgroups.txt | 139 and depending on who is launching the browser he can 143 With only a single hierarchy, he now would potentially have to create
|
/linux-4.4.14/drivers/staging/rtl8192u/ |
D | copying | 222 system; it is up to the author/donor to decide if he or she is willing
|
/linux-4.4.14/tools/usb/usbip/ |
D | COPYING | 222 system; it is up to the author/donor to decide if he or she is willing
|
/linux-4.4.14/drivers/staging/rtl8192e/ |
D | license | 223 author/donor to decide if he or she is willing to distribute software
|
/linux-4.4.14/ |
D | COPYING | 238 system; it is up to the author/donor to decide if he or she is willing
|
D | CREDITS | 2566 S: Ruhstrathöhe 2 b. 4087 # last entry, and he'll get positively pissed if he can't even
|
/linux-4.4.14/drivers/gpio/ |
D | Kconfig | 21 decide whether he needs it or not.
|
/linux-4.4.14/Documentation/RCU/ |
D | RTFP.txt | 72 any write-side changes he might have made in this work using SGI's Irix 1436 like it, but time he saw an opportunity for this technique,
|
/linux-4.4.14/include/linux/mlx5/ |
D | mlx5_ifc.h | 6529 u8 he[0x1]; member
|
/linux-4.4.14/Documentation/s390/ |
D | Debugging390.txt | 1494 of another VM guest so he can ftp the logfile back to his own machine. I'll do
|