/linux-4.4.14/fs/ubifs/ |
D | master.c | 188 if (c->lst.empty_lebs < 0 || c->lst.empty_lebs > c->main_lebs - 2) { in validate_master() 193 if (c->lst.idx_lebs < 0 || c->lst.idx_lebs > c->main_lebs - 1) { in validate_master() 198 if (c->lst.total_free < 0 || c->lst.total_free > main_sz || in validate_master() 199 c->lst.total_free & 7) { in validate_master() 204 if (c->lst.total_dirty < 0 || (c->lst.total_dirty & 7)) { in validate_master() 209 if (c->lst.total_used < 0 || (c->lst.total_used & 7)) { in validate_master() 214 if (c->lst.total_free + c->lst.total_dirty + in validate_master() 215 c->lst.total_used > main_sz) { in validate_master() 220 if (c->lst.total_dead + c->lst.total_dark + in validate_master() 221 c->lst.total_used + c->bi.old_idx_sz > main_sz) { in validate_master() [all …]
|
D | lprops.c | 549 ubifs_assert(c->lst.empty_lebs >= 0 && in ubifs_change_lp() 550 c->lst.empty_lebs <= c->main_lebs); in ubifs_change_lp() 553 ubifs_assert(c->lst.taken_empty_lebs >= 0); in ubifs_change_lp() 554 ubifs_assert(c->lst.taken_empty_lebs <= c->lst.empty_lebs); in ubifs_change_lp() 555 ubifs_assert(!(c->lst.total_free & 7) && !(c->lst.total_dirty & 7)); in ubifs_change_lp() 556 ubifs_assert(!(c->lst.total_dead & 7) && !(c->lst.total_dark & 7)); in ubifs_change_lp() 557 ubifs_assert(!(c->lst.total_used & 7)); in ubifs_change_lp() 572 c->lst.taken_empty_lebs -= 1; in ubifs_change_lp() 579 c->lst.total_dead -= old_spc; in ubifs_change_lp() 581 c->lst.total_dark -= ubifs_calc_dark(c, old_spc); in ubifs_change_lp() [all …]
|
D | budget.c | 214 available = c->main_bytes - c->lst.total_used; in ubifs_calc_available() 239 available -= c->lst.total_dead; in ubifs_calc_available() 247 available -= c->lst.total_dark; in ubifs_calc_available() 255 if (c->lst.idx_lebs > min_idx_lebs) { in ubifs_calc_available() 256 subtract_lebs = c->lst.idx_lebs - min_idx_lebs; in ubifs_calc_available() 315 if (min_idx_lebs > c->lst.idx_lebs) in do_budget_space() 316 rsvd_idx_lebs = min_idx_lebs - c->lst.idx_lebs; in do_budget_space() 342 lebs = c->lst.empty_lebs + c->freeable_cnt + c->idx_gc_cnt - in do_budget_space() 343 c->lst.taken_empty_lebs; in do_budget_space() 698 if (c->bi.min_idx_lebs > c->lst.idx_lebs) in ubifs_get_free_space_nolock() [all …]
|
D | find.c | 70 n = c->lst.empty_lebs + c->freeable_cnt - in valuable() 71 c->lst.taken_empty_lebs; in valuable() 246 lebs = c->lst.empty_lebs + c->idx_gc_cnt; in ubifs_find_dirty_leb() 247 lebs += c->freeable_cnt - c->lst.taken_empty_lebs; in ubifs_find_dirty_leb() 255 if (c->bi.min_idx_lebs >= c->lst.idx_lebs) { in ubifs_find_dirty_leb() 256 rsvd_idx_lebs = c->bi.min_idx_lebs - c->lst.idx_lebs; in ubifs_find_dirty_leb() 279 exclude_index = (c->bi.min_idx_lebs >= c->lst.idx_lebs); in ubifs_find_dirty_leb() 504 if (c->bi.min_idx_lebs > c->lst.idx_lebs) in ubifs_find_free_space() 505 rsvd_idx_lebs = c->bi.min_idx_lebs - c->lst.idx_lebs; in ubifs_find_free_space() 508 lebs = c->lst.empty_lebs + c->freeable_cnt + c->idx_gc_cnt - in ubifs_find_free_space() [all …]
|
D | commit.c | 113 struct ubifs_lp_stats lst; in do_commit() local 156 ubifs_get_lp_stats(c, &lst); in do_commit() 190 c->mst_node->empty_lebs = cpu_to_le32(lst.empty_lebs); in do_commit() 191 c->mst_node->idx_lebs = cpu_to_le32(lst.idx_lebs); in do_commit() 192 c->mst_node->total_free = cpu_to_le64(lst.total_free); in do_commit() 193 c->mst_node->total_dirty = cpu_to_le64(lst.total_dirty); in do_commit() 194 c->mst_node->total_used = cpu_to_le64(lst.total_used); in do_commit() 195 c->mst_node->total_dead = cpu_to_le64(lst.total_dead); in do_commit() 196 c->mst_node->total_dark = cpu_to_le64(lst.total_dark); in do_commit()
|
D | misc.h | 276 ubifs_assert(c->lst.empty_lebs >= 0 && in ubifs_release_lprops() 277 c->lst.empty_lebs <= c->main_lebs); in ubifs_release_lprops()
|
D | debug.c | 565 void ubifs_dump_lstats(const struct ubifs_lp_stats *lst) in ubifs_dump_lstats() argument 569 current->pid, lst->empty_lebs, lst->idx_lebs); in ubifs_dump_lstats() 571 lst->taken_empty_lebs, lst->total_free, lst->total_dirty); in ubifs_dump_lstats() 573 lst->total_used, lst->total_dark, lst->total_dead); in ubifs_dump_lstats() 740 struct ubifs_lp_stats lst; in ubifs_dump_lprops() local 743 ubifs_get_lp_stats(c, &lst); in ubifs_dump_lprops() 744 ubifs_dump_lstats(&lst); in ubifs_dump_lprops() 976 memcpy(&d->saved_lst, &c->lst, sizeof(struct ubifs_lp_stats)); in dbg_save_space_info() 1023 struct ubifs_lp_stats lst; in dbg_check_space_info() local 1049 ubifs_get_lp_stats(c, &lst); in dbg_check_space_info() [all …]
|
D | tnc_commit.c | 367 c->gap_lebs = kmalloc(sizeof(int) * (c->lst.idx_lebs + 1), GFP_NOFS); in layout_in_gaps() 373 ubifs_assert(p < c->gap_lebs + sizeof(int) * c->lst.idx_lebs); in layout_in_gaps() 788 dbg_cmt("number of index LEBs %d", c->lst.idx_lebs); in ubifs_tnc_start_commit()
|
D | super.c | 1131 if (c->lst.total_free + c->lst.total_dirty < c->dark_wm) { in check_free_space() 1390 ubifs_assert(c->lst.taken_empty_lebs > 0); in mount_ubifs() 1393 ubifs_assert(c->lst.taken_empty_lebs > 0); in mount_ubifs() 1434 dbg_gen("index LEBs: %d", c->lst.idx_lebs); in mount_ubifs() 1873 ubifs_assert(c->lst.taken_empty_lebs > 0); in ubifs_remount_fs()
|
D | debug.h | 257 void ubifs_dump_lstats(const struct ubifs_lp_stats *lst);
|
D | ubifs.h | 1344 struct ubifs_lp_stats lst; member 1726 void ubifs_get_lp_stats(struct ubifs_info *c, struct ubifs_lp_stats *lst);
|
/linux-4.4.14/drivers/media/usb/pvrusb2/ |
D | pvrusb2-devattr.c | 65 .client_table.lst = pvr2_cli_29xxx, 67 .fx2_firmware.lst = pvr2_fw1_names_29xxx, 99 .client_table.lst = pvr2_cli_24xxx, 101 .fx2_firmware.lst = pvr2_fw1_names_24xxx, 129 .client_table.lst = pvr2_cli_gotview_2, 150 .client_table.lst = pvr2_cli_gotview_2, 173 .client_table.lst = pvr2_cli_av400, 228 .client_table.lst = pvr2_cli_onair_creator, 288 .client_table.lst = pvr2_cli_onair_usb2, 382 .client_table.lst = pvr2_cli_73xxx, [all …]
|
D | pvrusb2-devattr.h | 59 const struct pvr2_device_client_desc *lst; member 65 const char **lst; member
|
D | pvrusb2-hdw.c | 1445 hdw->hdw_desc->fx2_firmware.lst); in pvr2_upload_firmware1() 2100 request_module(cm->lst[idx]); in pvr2_hdw_load_modules() 2105 if (pvr2_hdw_load_subdev(hdw, &ct->lst[idx]) < 0) okFl = 0; in pvr2_hdw_load_modules()
|
/linux-4.4.14/samples/trace_events/ |
D | trace-events-sample.h | 230 TP_PROTO(const char *foo, int bar, const int *lst, 233 TP_ARGS(foo, bar, lst, string, mask), 238 __dynamic_array(int, list, __length_of(lst)) 246 memcpy(__get_dynamic_array(list), lst, 247 __length_of(lst) * sizeof(int));
|
/linux-4.4.14/scripts/ |
D | Makefile.build | 128 $(real-objs-m:.o=.lst): part-of-module := y 133 $(real-objs-m:.o=.lst): quiet_modtag := [M] 143 $(multi-objs-m:.o=.lst) : modname = $(modname-multi) 147 $(multi-objs-y:.o=.lst) : modname = $(modname-multi) 273 $(obj)/%.lst: $(src)/%.c FORCE
|
/linux-4.4.14/ |
D | .get_maintainer.ignore | 1 Christoph Hellwig <hch@lst.de>
|
D | .gitignore | 22 *.lst
|
D | .mailmap | 34 Christoph Hellwig <hch@lst.de>
|
D | Makefile | 1534 %.lst: %.c prepare scripts FORCE
|
D | CREDITS | 767 D: Former security contact point (please use vendor-sec@lst.de)
|
/linux-4.4.14/arch/avr32/ |
D | Makefile | 72 vmlinux.lst: vmlinux 75 CLEAN_FILES += vmlinux.s vmlinux.lst
|
/linux-4.4.14/drivers/char/tpm/ |
D | tpm_eventlog.c | 448 void tpm_bios_log_teardown(struct dentry **lst) in tpm_bios_log_teardown() argument 453 securityfs_remove(lst[i]); in tpm_bios_log_teardown()
|
/linux-4.4.14/fs/nfsd/ |
D | nfs4state.c | 5409 struct nfs4_ol_stateid *lst; in find_lock_stateid() local 5414 list_for_each_entry(lst, &lo->lo_owner.so_stateids, st_perstateowner) { in find_lock_stateid() 5415 if (lst->st_stid.sc_file == fp) { in find_lock_stateid() 5416 atomic_inc(&lst->st_stid.sc_count); in find_lock_stateid() 5417 return lst; in find_lock_stateid() 5429 struct nfs4_ol_stateid *lst; in find_or_create_lock_stateid() local 5434 lst = find_lock_stateid(lo, fi); in find_or_create_lock_stateid() 5435 if (lst == NULL) { in find_or_create_lock_stateid() 5442 lst = find_lock_stateid(lo, fi); in find_or_create_lock_stateid() 5443 if (likely(!lst)) { in find_or_create_lock_stateid() [all …]
|
/linux-4.4.14/Documentation/ |
D | dontdiff | 27 *.lst
|
/linux-4.4.14/drivers/staging/rdma/ipath/ |
D | ipath_iba6110.c | 1100 u64 lst, u64 ltst) in ipath_setup_ht_setextled() argument 1115 lst = (dd->ipath_led_override & IPATH_LED_LOG) in ipath_setup_ht_setextled() 1135 if (lst == INFINIPATH_IBCS_L_STATE_ACTIVE) in ipath_setup_ht_setextled() 1143 if (lst == INFINIPATH_IBCS_L_STATE_ACTIVE) in ipath_setup_ht_setextled()
|
/linux-4.4.14/Documentation/watchdog/ |
D | hpwdt.txt | 52 edit /boot/grub/menu.lst and place the nmi_watchdog=0 at the end of the
|
/linux-4.4.14/drivers/infiniband/hw/qib/ |
D | qib_iba6120.c | 1449 u64 extctl, val, lst, ltst; in qib_6120_setup_setextled() local 1464 lst = (ppd->led_override & QIB_LED_LOG) ? in qib_6120_setup_setextled() 1469 lst = qib_6120_iblink_state(val); in qib_6120_setup_setextled() 1472 lst = 0; in qib_6120_setup_setextled() 1481 if (lst == IB_PORT_ACTIVE) in qib_6120_setup_setextled()
|
D | qib_iba7220.c | 1735 u64 extctl, ledblink = 0, val, lst, ltst; in qib_setup_7220_setextled() local 1748 lst = (ppd->led_override & QIB_LED_LOG) ? in qib_setup_7220_setextled() 1753 lst = qib_7220_iblink_state(val); in qib_setup_7220_setextled() 1756 lst = 0; in qib_setup_7220_setextled() 1772 if (lst == IB_PORT_ACTIVE) in qib_setup_7220_setextled()
|
/linux-4.4.14/Documentation/scsi/ |
D | ChangeLog.megaraid_sas | 592 - Christoph Hellwig <hch@lst.de> 635 - Christoph Hellwig <hch@lst.de> 641 - Christoph Hellwig <hch@lst.de>
|
D | ChangeLog.lpfc | 11 * Merged patch from Christoph Hellwig <hch@lst.de>: split helpers 402 * Integrated patch from Christoph Hellwig <hch@lst.de> Kill 406 * Integrated patch from Christoph Hellwig <hch@lst.de> Removes 408 * Integrated patch from Christoph Hellwig <hch@lst.de>: use 527 * Integrated patch from Christoph Hellwig (hch@lst.de): don't call
|
/linux-4.4.14/Documentation/kbuild/ |
D | modules.txt | 140 make -C $KDIR M=$PWD bar.lst
|