/linux-4.1.27/tools/perf/tests/ |
D | hists_output.c | 91 struct hist_entry *he; in del_hist_entries() local 106 he = rb_entry(node, struct hist_entry, rb_node); in del_hist_entries() 108 rb_erase(&he->rb_node_in, root_in); in del_hist_entries() 109 hist_entry__delete(he); in del_hist_entries() 115 #define COMM(he) (thread__comm_str(he->thread)) argument 116 #define DSO(he) (he->ms.map->dso->short_name) argument 117 #define SYM(he) (he->ms.sym->name) argument 118 #define CPU(he) (he->cpu) argument 119 #define PID(he) (he->thread->tid) argument 126 struct hist_entry *he; in test1() local [all …]
|
D | hists_common.c | 167 struct hist_entry *he; in print_hists_in() local 169 he = rb_entry(node, struct hist_entry, rb_node_in); in print_hists_in() 171 if (!he->filtered) { in print_hists_in() 173 i, thread__comm_str(he->thread), in print_hists_in() 174 he->ms.map->dso->short_name, in print_hists_in() 175 he->ms.sym->name, he->stat.period); in print_hists_in() 194 struct hist_entry *he; in print_hists_out() local 196 he = rb_entry(node, struct hist_entry, rb_node); in print_hists_out() 198 if (!he->filtered) { in print_hists_out() 200 i, thread__comm_str(he->thread), he->thread->tid, in print_hists_out() [all …]
|
D | hists_cumulate.c | 125 struct hist_entry *he; in del_hist_entries() local 140 he = rb_entry(node, struct hist_entry, rb_node); in del_hist_entries() 142 rb_erase(&he->rb_node_in, root_in); in del_hist_entries() 143 hist_entry__delete(he); in del_hist_entries() 149 #define COMM(he) (thread__comm_str(he->thread)) argument 150 #define DSO(he) (he->ms.map->dso->short_name) argument 151 #define SYM(he) (he->ms.sym->name) argument 152 #define CPU(he) (he->cpu) argument 153 #define PID(he) (he->thread->tid) argument 154 #define DEPTH(he) (he->callchain->max_depth) argument [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() 116 he = __hists__add_entry(hists, &al, NULL, in add_hist_entries() 118 if (he == NULL) in add_hist_entries() 163 struct hist_entry *he; in __validate_match() local 165 he = rb_entry(node, struct hist_entry, rb_node_in); in __validate_match() 167 if (hist_entry__has_pairs(he)) { in __validate_match() 170 he->thread, he->ms.map, he->ms.sym)) { in __validate_match() 215 struct hist_entry *he; in __validate_link() local [all …]
|
/linux-4.1.27/tools/perf/util/ |
D | hist.c | 13 struct hist_entry *he); 15 struct hist_entry *he); 17 struct hist_entry *he); 226 static bool hists__decay_entry(struct hists *hists, struct hist_entry *he) in hists__decay_entry() argument 228 u64 prev_period = he->stat.period; in hists__decay_entry() 234 he_stat__decay(&he->stat); in hists__decay_entry() 236 he_stat__decay(he->stat_acc); in hists__decay_entry() 238 diff = prev_period - he->stat.period; in hists__decay_entry() 241 if (!he->filtered) in hists__decay_entry() 244 return he->stat.period == 0; in hists__decay_entry() [all …]
|
D | sort.h | 117 static inline bool hist_entry__has_pairs(struct hist_entry *he) in hist_entry__has_pairs() argument 119 return !list_empty(&he->pairs.node); in hist_entry__has_pairs() 122 static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he) in hist_entry__next_pair() argument 124 if (hist_entry__has_pairs(he)) in hist_entry__next_pair() 125 return list_entry(he->pairs.node.next, struct hist_entry, pairs.node); in hist_entry__next_pair() 130 struct hist_entry *he) in hist_entry__add_pair() argument 132 list_add_tail(&pair->pairs.node, &he->pairs.head); in hist_entry__add_pair() 135 static inline float hist_entry__get_percent_limit(struct hist_entry *he) in hist_entry__get_percent_limit() argument 137 u64 period = he->stat.period; in hist_entry__get_percent_limit() 138 u64 total_period = hists__total_period(he->hists); in hist_entry__get_percent_limit() [all …]
|
D | sort.c | 69 static int hist_entry__thread_snprintf(struct hist_entry *he, char *bf, in hist_entry__thread_snprintf() argument 72 const char *comm = thread__comm_str(he->thread); in hist_entry__thread_snprintf() 75 return repsep_snprintf(bf, size, "%5d:%-*.*s", he->thread->tid, in hist_entry__thread_snprintf() 108 static int hist_entry__comm_snprintf(struct hist_entry *he, char *bf, in hist_entry__comm_snprintf() argument 111 return repsep_snprintf(bf, size, "%-*.*s", width, width, comm__str(he->comm)); in hist_entry__comm_snprintf() 163 static int hist_entry__dso_snprintf(struct hist_entry *he, char *bf, in hist_entry__dso_snprintf() argument 166 return _hist_entry__dso_snprintf(he->ms.map, bf, size, width); in hist_entry__dso_snprintf() 268 static int hist_entry__sym_snprintf(struct hist_entry *he, char *bf, in hist_entry__sym_snprintf() argument 271 return _hist_entry__sym_snprintf(he->ms.map, he->ms.sym, he->ip, in hist_entry__sym_snprintf() 272 he->level, bf, size, width); in hist_entry__sym_snprintf() [all …]
|
D | hist.h | 91 struct hist_entry *he; member 120 int hist_entry__sort_snprintf(struct hist_entry *he, char *bf, size_t size, 122 void hist_entry__delete(struct hist_entry *he); 157 void hists__calc_col_len(struct hists *hists, struct hist_entry *he); 195 struct hist_entry *he); 197 struct hist_entry *he); 267 typedef u64 (*hpp_field_fn)(struct hist_entry *he); 272 struct hist_entry *he, hpp_field_fn get_field, 275 struct hist_entry *he, hpp_field_fn get_field, 309 int hist_entry__tui_annotate(struct hist_entry *he, struct perf_evsel *evsel, [all …]
|
D | annotate.h | 132 int hist_entry__inc_addr_samples(struct hist_entry *he, int evidx, u64 addr); 139 int hist_entry__annotate(struct hist_entry *he, size_t privsize);
|
D | callchain.h | 171 int hist_entry__append_callchain(struct hist_entry *he, struct perf_sample *sample);
|
D | annotate.c | 531 int hist_entry__inc_addr_samples(struct hist_entry *he, int evidx, u64 ip) in hist_entry__inc_addr_samples() argument 533 return symbol__inc_addr_samples(he->ms.sym, he->ms.map, evidx, ip); in hist_entry__inc_addr_samples() 1471 int hist_entry__annotate(struct hist_entry *he, size_t privsize) in hist_entry__annotate() argument 1473 return symbol__annotate(he->ms.sym, he->ms.map, privsize); in hist_entry__annotate()
|
D | callchain.c | 775 int hist_entry__append_callchain(struct hist_entry *he, struct perf_sample *sample) in hist_entry__append_callchain() argument 779 return callchain_append(he->callchain, &callchain_cursor, sample->period); in hist_entry__append_callchain()
|
/linux-4.1.27/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.1.27/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 70 he = __hists__add_entry(hists, al, NULL, NULL, NULL, 1, 1, 0, true); in perf_evsel__add_sample() 71 if (he == NULL) in perf_evsel__add_sample() 74 ret = hist_entry__inc_addr_samples(he, evsel->idx, al->addr); in perf_evsel__add_sample() 106 static int hist_entry__tty_annotate(struct hist_entry *he, in hist_entry__tty_annotate() argument 110 return symbol__tty_annotate(he->ms.sym, he->ms.map, evsel, in hist_entry__tty_annotate() 122 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node); in hists__find_annotations() local 125 if (he->ms.sym == NULL || he->ms.map->dso->annotate_warned) in hists__find_annotations() 128 notes = symbol__annotation(he->ms.sym); in hists__find_annotations() 140 int (*annotate)(struct hist_entry *he, in hists__find_annotations() [all …]
|
D | builtin-top.c | 89 static int perf_top__parse_source(struct perf_top *top, struct hist_entry *he) in perf_top__parse_source() argument 96 if (!he || !he->ms.sym) in perf_top__parse_source() 99 sym = he->ms.sym; in perf_top__parse_source() 100 map = he->ms.map; in perf_top__parse_source() 132 top->sym_filter_entry = he; in perf_top__parse_source() 139 static void __zero_source_counters(struct hist_entry *he) in __zero_source_counters() argument 141 struct symbol *sym = he->ms.sym; in __zero_source_counters() 173 struct hist_entry *he, in perf_top__record_precise_ip() argument 180 if (he == NULL || he->ms.sym == NULL || in perf_top__record_precise_ip() 182 top->sym_filter_entry->ms.sym != he->ms.sym) && use_browser != 1)) in perf_top__record_precise_ip() [all …]
|
D | builtin-report.c | 95 struct hist_entry *he = iter->he; in hist_iter__report_callback() local 104 bi = he->branch_info; in hist_iter__report_callback() 112 mi = he->mem_info; in hist_iter__report_callback() 117 err = hist_entry__inc_addr_samples(he, evsel->idx, al->addr); in hist_iter__report_callback() 121 err = hist_entry__inc_addr_samples(he, evsel->idx, in hist_iter__report_callback() 124 err = hist_entry__inc_addr_samples(he, evsel->idx, al->addr); in hist_iter__report_callback()
|
/linux-4.1.27/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.1.27/tools/perf/ui/browsers/ |
D | hists.c | 60 struct hist_entry *he = in hist_browser__get_folding() local 63 if (he->ms.unfolded) in hist_browser__get_folding() 64 unfolded_rows += he->nr_rows; in hist_browser__get_folding() 144 static char hist_entry__folded(const struct hist_entry *he) in hist_entry__folded() argument 146 return map_symbol__folded(&he->ms); in hist_entry__folded() 276 static void hist_entry__init_have_children(struct hist_entry *he) in hist_entry__init_have_children() argument 278 if (!he->init_have_children) { in hist_entry__init_have_children() 279 he->ms.has_children = !RB_EMPTY_ROOT(&he->sorted_chain); in hist_entry__init_have_children() 280 callchain__init_have_children(&he->sorted_chain); in hist_entry__init_have_children() 281 he->init_have_children = true; in hist_entry__init_have_children() [all …]
|
D | annotate.c | 838 int hist_entry__tui_annotate(struct hist_entry *he, struct perf_evsel *evsel, in hist_entry__tui_annotate() argument 841 return map_symbol__tui_annotate(&he->ms, evsel, hbt); in hist_entry__tui_annotate()
|
/linux-4.1.27/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.1.27/include/linux/ |
D | rhashtable.h | 199 const struct rhash_head *he) in rht_obj() argument 201 return (char *)he - ht->p.head_offset; in rht_obj() 243 const struct rhash_head *he, const struct rhashtable_params params) in rht_head_hashfn() argument 245 const char *ptr = rht_obj(ht, he); in rht_head_hashfn() 535 struct rhash_head *he; in rhashtable_lookup_fast() local 543 rht_for_each_rcu(he, tbl, hash) { in rhashtable_lookup_fast() 545 params.obj_cmpfn(&arg, rht_obj(ht, he)) : in rhashtable_lookup_fast() 546 rhashtable_compare(&arg, rht_obj(ht, he))) in rhashtable_lookup_fast() 549 return rht_obj(ht, he); in rhashtable_lookup_fast() 746 struct rhash_head *he; in __rhashtable_remove_fast() local [all …]
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/drivers/atm/ |
D | Makefile | 32 obj-$(CONFIG_ATM_HE) += he.o
|
/linux-4.1.27/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 | 507 development of the patch, or that he/she was in the patch's delivery path.
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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 | 568 u32 hd, hs, he, ht, hbs, hbe; in tdfxfb_set_par() local 600 he = (hsyncend >> 3) - 1; in tdfxfb_set_par() 665 reg.crt[0x05] = ((hbe & 0x20) << 2) | (he & 0x1f); in tdfxfb_set_par() 690 ((he & 0x20) << 2)); in tdfxfb_set_par()
|
/linux-4.1.27/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.1.27/Documentation/video4linux/bttv/ |
D | PROBLEMS | 25 with his S3 868 went away when he upgraded to XFree 3.2.
|
/linux-4.1.27/drivers/staging/lustre/lustre/include/lustre/ |
D | lustre_user.h | 732 static inline void hsm_set_cl_event(int *flags, enum hsm_event he) in hsm_set_cl_event() argument 734 *flags |= (he << CLF_HSM_EVENT_L); in hsm_set_cl_event()
|
/linux-4.1.27/Documentation/video4linux/ |
D | meye.txt | 94 MEYEIOC_G_PARAMS, change what he likes and then issue the
|
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx5/core/ |
D | main.c | 247 u8 he; member 465 he_in.he = MLX5_SET_HOST_ENDIANNESS; in set_hca_ctrl()
|
/linux-4.1.27/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.1.27/Documentation/scsi/ |
D | scsi-changer.txt | 23 changer device this is a "don't care", he *only* shuffles around the
|
D | osst.txt | 174 and always tried to answer HW or FW related questions. Furthermore, he
|
D | advansys.txt | 206 AscWaitTixISRDone() which he found necessary to make the
|
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.1.27/Documentation/scheduler/ |
D | sched-rt-group.txt | 22 root only and assumes root knows what he is doing.
|
/linux-4.1.27/fs/affs/ |
D | Changes | 129 patches he did. They're marked (BH). Thanks, Bill!
|
/linux-4.1.27/Documentation/DocBook/media/ |
D | fieldseq_bt.gif.b64 | 237 MjQpJuc5y+he+OouR/AFpvmqZ3344t9F/AwmQGfFzvn6iKFTgOfz6FmuIxE0865zj0aPJNGLNk+j
|
/linux-4.1.27/Documentation/networking/ |
D | netdev-FAQ.txt | 118 for networking, Dave collects up patches he deems critical for the
|
D | LICENSE.qlge | 232 system; it is up to the author/donor to decide if he or she is willing
|
D | LICENSE.qlcnic | 232 system; it is up to the author/donor to decide if he or she is willing
|
/linux-4.1.27/drivers/tty/serial/8250/ |
D | Kconfig | 320 which he wouldn't see otherwise. The getty has still to be configured
|
/linux-4.1.27/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.1.27/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.1.27/tools/usb/usbip/ |
D | COPYING | 222 system; it is up to the author/donor to decide if he or she is willing
|
/linux-4.1.27/drivers/staging/rtl8192e/ |
D | license | 223 author/donor to decide if he or she is willing to distribute software
|
/linux-4.1.27/drivers/staging/rtl8192u/ |
D | copying | 222 system; it is up to the author/donor to decide if he or she is willing
|
/linux-4.1.27/ |
D | COPYING | 238 system; it is up to the author/donor to decide if he or she is willing
|
D | CREDITS | 2562 S: Ruhstrathöhe 2 b. 4075 # last entry, and he'll get positively pissed if he can't even
|
/linux-4.1.27/drivers/gpio/ |
D | Kconfig | 21 decide whether he needs it or not.
|
/linux-4.1.27/Documentation/vm/ |
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.1.27/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.1.27/Documentation/s390/ |
D | Debugging390.txt | 1494 of another VM guest so he can ftp the logfile back to his own machine. I'll do
|