/linux-4.4.14/drivers/usb/mon/ |
H A D | mon_main.c | 181 * a reader staying across an rmmod foo_hcd, so test ->u_bus. mon_stop() 191 * Add a USB bus (usually by a modprobe foo-hcd) 206 * Remove a USB bus (either from rmmod foo-hcd or from a hot-remove event).
|
/linux-4.4.14/drivers/usb/phy/ |
H A D | phy-fsl-usb.c | 227 void b_data_pulse_end(unsigned long foo) b_data_pulse_end() argument 246 void b_vbus_pulse_end(unsigned long foo) b_vbus_pulse_end() argument 259 void b_srp_end(unsigned long foo) b_srp_end() argument 274 void a_wait_enum(unsigned long foo) a_wait_enum() argument
|
/linux-4.4.14/drivers/usb/serial/ |
H A D | ezusb_convert.pl | 9 # perl ezusb_convert.pl foo <foo.hex >fw_foo.h
|
/linux-4.4.14/drivers/usb/storage/ |
H A D | freecom.c | 266 usb_stor_dbg(us, "foo Status result %d %u\n", result, partial); freecom_transport()
|
H A D | unusual_devs.h | 667 /* Submitted by Michal Mlotek <mlotek@foobar.pl> */
|
/linux-4.4.14/drivers/staging/rdma/ipath/ |
H A D | ipath_registers.h | 328 * temporarily. Minor footprint issue if common-model
|
/linux-4.4.14/drivers/staging/vt6655/ |
H A D | TODO | 14 - reduce .data footprint
|
/linux-4.4.14/drivers/staging/wlan-ng/ |
H A D | hfa384x.h | 1169 volatile int reapable; /* Food for the reaper task */
|
H A D | p80211conv.c | 115 int foo; skb_ether_to_p80211() local 212 foo = wep_encrypt(wlandev, skb->data, p80211_wep->data, skb_ether_to_p80211() 216 if (foo) { skb_ether_to_p80211() 219 foo); skb_ether_to_p80211() 291 int foo; skb_p80211_to_ether() local 330 foo = wep_decrypt(wlandev, skb->data + payload_offset + 4, skb_p80211_to_ether() 335 if (foo) { skb_p80211_to_ether() 338 foo); skb_p80211_to_ether()
|
/linux-4.4.14/drivers/thermal/ |
H A D | intel_powerclamp.c | 265 static void noop_timer(unsigned long foo) noop_timer() argument
|
/linux-4.4.14/drivers/tty/serial/ |
H A D | 21285.c | 41 static const char serial21285_name[] = "Footbridge UART"; 505 MODULE_DESCRIPTION("Intel Footbridge (21285) serial driver");
|
H A D | Kconfig | 402 depends on FOOTBRIDGE 405 If you have a machine based on a 21285 (Footbridge) StrongARM(R)/ 414 If you have enabled the serial port on the 21285 footbridge you can
|
/linux-4.4.14/drivers/tty/serial/8250/ |
H A D | 8250_pci.c | 5159 * Mainpine series cards: Fairly standard layout but fools
|
/linux-4.4.14/drivers/usb/core/ |
H A D | hcd.c | 1379 * memory footprint over access speed since the amount hcd_alloc_coherent()
|
/linux-4.4.14/drivers/scsi/osd/ |
H A D | osd_initiator.c | 1400 OSD_ERR("BAD FOOD from target. list not valid!" osd_req_decode_get_attr_list() 1675 * targets with low memory footprint) osd_finalize_request()
|
/linux-4.4.14/drivers/scsi/ |
H A D | qla1280.c | 403 #define ia64_platform_is(foo) (!strcmp(x, platform_name))
|
H A D | qlogicfas408.c | 15 help respectively, and for suffering through my foolishness during the
|
H A D | scsi_devinfo.c | 424 * scsi_static_device_list[] entry, such as " FOO" scsi_dev_info_list_find() 425 * rather than "FOO". Since this code is already scsi_dev_info_list_find()
|
H A D | scsi_lib.c | 1814 blk_dump_rq_flags(req, "foo");
|
H A D | NCR5380.c | 1727 int foo; NCR5380_transfer_dma() local 1890 foo = NCR5380_pread(instance, d, c); NCR5380_transfer_dma() 1896 if (!(foo = NCR5380_pread(instance, d, c - diff))) { NCR5380_transfer_dma() 1929 foo = NCR5380_pwrite(instance, d, c); NCR5380_transfer_dma() 1933 if (!(foo = NCR5380_pwrite(instance, d, c))) { NCR5380_transfer_dma() 1978 return foo; NCR5380_transfer_dma()
|
H A D | t128.c | 333 void __iomem *foo = base + T_CONTROL_REG_OFFSET; local 334 tmp = readb(foo); 335 writeb(tmp | T_CR_CT, foo); 336 writeb(tmp, foo); 379 void __iomem *foo = base + T_CONTROL_REG_OFFSET; local 380 tmp = readb(foo); 381 writeb(tmp | T_CR_CT, foo); 382 writeb(tmp, foo);
|
H A D | in2000.c | 1932 * pretty straightforward and fool-proof operation. There are 3 in2000_detect()
|
/linux-4.4.14/drivers/staging/lustre/lustre/include/ |
H A D | cl_object.h | 3085 #define CL_IO_SLICE_CLEAN(foo_io, base) \ 3087 typeof(foo_io) __foo_io = (foo_io); \
|
H A D | lu_ref.h | 35 * Suppose there is a reference counted data-structure struct foo. To track 36 * who acquired references to instance of struct foo, add lu_ref field to it: 39 * struct foo { 40 * atomic_t foo_refcount; 41 * struct lu_ref foo_reference; 46 * foo::foo_reference has to be initialized by calling 48 * decrement foo::foo_refcount, let's say they are foo_get(struct foo *foo) 49 * and foo_put(struct foo *foo), respectively. 51 * Whenever foo_get() is called to acquire a reference on a foo, lu_ref_add() 52 * has to be called to insert into foo::foo_reference a record, describing 59 * // bar owns a reference to foo. 60 * bar->bar_foo = foo_get(foo); 61 * lu_ref_add(&foo->foo_reference, "bar", bar); 65 * // reference from bar to foo is released. 66 * lu_ref_del(&foo->foo_reference, "bar", bar); 67 * foo_put(bar->bar_foo); 70 * // current thread acquired a temporary reference to foo. 71 * foo_get(foo); 72 * lu_ref_add(&foo->reference, __func__, current); 77 * lu_ref_del(&foo->reference, __func__, current); 78 * foo_put(foo); 82 * lu_ref_del() calls into foo_get() and foo_put(). When an instance of struct 83 * foo is destroyed, lu_ref_fini() has to be called that checks that no 90 * in the same place where pointer to struct foo is stored), and use 94 * // There is a large number of bar's for a single foo. 95 * bar->bar_foo = foo_get(foo); 96 * bar->bar_foo_ref = lu_ref_add(&foo->foo_reference, "bar", bar); 100 * // reference from bar to foo is released. 101 * lu_ref_del_at(&foo->foo_reference, bar->bar_foo_ref, "bar", bar); 102 * foo_put(bar->bar_foo);
|
/linux-4.4.14/drivers/staging/lustre/lustre/include/lustre/ |
H A D | lustre_idl.h | 104 /* FOO_REQUEST_PORTAL is for incoming requests on the FOO 105 * FOO_REPLY_PORTAL is for incoming replies on the FOO 106 * FOO_BULK_PORTAL is for incoming bulk on the FOO
|
/linux-4.4.14/drivers/staging/lustre/lustre/obdclass/ |
H A D | obd_config.c | 990 /* e.g. tunefs.lustre --param mdt.group_upcall=foo /r/tmp/lustre-mdt class_process_proc_param()
|
/linux-4.4.14/drivers/staging/olpc_dcon/ |
H A D | olpc_dcon.c | 553 unsigned long foo, void *bar) dcon_reboot_notify() 552 dcon_reboot_notify(struct notifier_block *nb, unsigned long foo, void *bar) dcon_reboot_notify() argument
|
/linux-4.4.14/drivers/staging/comedi/ |
H A D | drivers.c | 731 * structure, say 'struct foo_board' containing a member 'const char 737 * structure, say 'sizeof(struct foo_board)', and 'driv->num_names' is
|
/linux-4.4.14/drivers/video/fbdev/ |
H A D | gbefb.c | 720 DMA hardware is fooled into thinking the screen is only one tile gbefb_set_par()
|
H A D | stifb.c | 523 /* change fb->id temporarily to fool SETUP_FB() */ rattlerSetupPlanes()
|
/linux-4.4.14/drivers/video/fbdev/omap2/dss/ |
H A D | omapdss-boot-init.c | 21 * encoder nodes from "panel-foo" to "omapdss,panel-foo". This way we can have
|
/linux-4.4.14/drivers/video/fbdev/sis/ |
H A D | sis_main.c | 346 bool footprint; sisfb_detect_custom_timing() local 373 footprint = true; sisfb_detect_custom_timing() 379 footprint = false; sisfb_detect_custom_timing() 382 footprint = false; sisfb_detect_custom_timing() 385 if(footprint) { sisfb_detect_custom_timing()
|
/linux-4.4.14/drivers/scsi/csiostor/ |
H A D | csio_wr.c | 750 * csio_wr_cleanup_iq_ftr - Cleanup Footer entries in IQ 754 * Cleanup the footer entries in the given ingress queue, 773 /* Get the footer */ csio_wr_cleanup_iq_ftr() 776 /* Zero out footer */ csio_wr_cleanup_iq_ftr() 1030 * @len_to_qid: The lower 32-bits of the first flit of the RSP footer 1100 * @ftr: Ingress queue WR SGE footer. 1103 * bit in the footer of the current WR. 1138 /* Get the footer */ csio_wr_process_iq() 1155 /* Subtract footer from WR len */ csio_wr_process_iq()
|
H A D | csio_wr.h | 301 * Structure for footer (last 2 flits) of Ingress Queue Entry.
|
/linux-4.4.14/drivers/isdn/hisax/ |
H A D | l3dss1.c | 359 #define FOO1(s, a, b) \ l3dss1_parse_facility() macro 363 l3_debug(st, "FOO1 nlen < ilen+2"); \ l3dss1_parse_facility() 378 FOO1("1A", 0x30, FOO1("1C", 0xA1, FOO1("1D", 0x30, FOO1("1E", 0x02, ( { l3dss1_parse_facility() 401 FOO1("2A", 0x30, FOO1("2B", 0x30, FOO1("2C", 0xA1, FOO1("2D", 0x30, FOO1("2E", 0x02, ( { l3dss1_parse_facility() 422 #undef FOO1 l3dss1_parse_facility() macro
|
/linux-4.4.14/drivers/lguest/x86/ |
H A D | core.c | 22 * mixed in with drivers/lguest/core.c but several foolhardy code slashers 24 * lguest to other architectures (see what I mean by foolhardy?).
|
/linux-4.4.14/drivers/mailbox/ |
H A D | mailbox-altera.c | 387 MODULE_AUTHOR("Ley Foon Tan <lftan@altera.com>");
|
/linux-4.4.14/drivers/md/bcache/ |
H A D | closure.h | 41 * foo_endio(struct bio *bio) 50 * bio1->bi_endio = foo_endio; 55 * bio2->bi_endio = foo_endio;
|
/linux-4.4.14/drivers/md/ |
H A D | dm-cache-policy.h | 202 * queue merging has occurred). To stop the policy being fooled by
|
H A D | md-cluster.c | 85 /* TODO: Unionize this for smaller footprint */
|
/linux-4.4.14/drivers/mtd/ |
H A D | afs.c | 37 struct footer_struct { struct 39 u32 image_start; /* Start of area reserved by this footer */ 40 u32 signature; /* 'Magic' number proves it's a footer */ 73 struct footer_struct fs; afs_read_footer() 113 * be located after the footer structure. afs_read_footer() 221 /* Read the footer. */ parse_afs_partitions()
|
/linux-4.4.14/drivers/mtd/chips/ |
H A D | cfi_cmdset_0001.c | 1103 * Warning: this function _will_ fool interrupt latency tracing tools.
|
H A D | cfi_cmdset_0002.c | 955 * Warning: this function _will_ fool interrupt latency tracing tools.
|
/linux-4.4.14/drivers/mtd/maps/ |
H A D | Kconfig | 266 tristate "CFI Flash device mapped on DC21285 Footbridge"
|
/linux-4.4.14/drivers/mtd/nand/ |
H A D | cs553x_nand.c | 157 unsigned char foo = readb(mmio_base + MM_NAND_STS); cs553x_device_ready() local 159 return (foo & CS_NAND_STS_FLASH_RDY) && !(foo & CS_NAND_CTLR_BUSY); cs553x_device_ready()
|
/linux-4.4.14/drivers/net/appletalk/ |
H A D | ltpc.c | 43 * requires a minimal amount of fooling with the code in ddp.c and aarp.c.
|
/linux-4.4.14/drivers/net/bonding/ |
H A D | bond_main.c | 2493 * arp_ip_target and fool ourselves with our own arp requests. bond_arp_rcv()
|
/linux-4.4.14/drivers/net/ethernet/3com/ |
H A D | 3c59x.c | 28 * elimination of all the tests and reduced cache footprint.
|
/linux-4.4.14/drivers/ide/ |
H A D | ide-gd.c | 359 /* strstr("foo", "") is non-NULL */ ide_gd_probe()
|
/linux-4.4.14/drivers/hid/ |
H A D | hid-ntrig.c | 606 /* Clear the contact footer */ ntrig_event() 646 /* Shouldn't get more than 4 footer packets, so skip */ ntrig_event() 652 /* if the footer isn't complete break */ ntrig_event() 671 * The first footer value indicates the presence of a ntrig_event() 722 * mode. The footer events tell us ntrig_event()
|
/linux-4.4.14/drivers/hwmon/ |
H A D | adt7462.c | 240 u16 foo; adt7462_read_word_data() local 241 foo = i2c_smbus_read_byte_data(client, reg); adt7462_read_word_data() 242 foo |= ((u16)i2c_smbus_read_byte_data(client, reg + 1) << 8); adt7462_read_word_data() 243 return foo; adt7462_read_word_data()
|
H A D | adt7470.c | 183 u16 foo; adt7470_read_word_data() local 184 foo = i2c_smbus_read_byte_data(client, reg); adt7470_read_word_data() 185 foo |= ((u16)i2c_smbus_read_byte_data(client, reg + 1) << 8); adt7470_read_word_data() 186 return foo; adt7470_read_word_data()
|
/linux-4.4.14/drivers/infiniband/hw/qib/ |
H A D | qib_iba6120.c | 2029 * for those who want to reduce memory footprint. Note that the qib_6120_tidtemplate()
|
H A D | qib_iba7322.c | 3901 * for those who want to reduce memory footprint. Note that the qib_7322_tidtemplate()
|
H A D | qib_pcie.c | 49 * To minimize the change footprint, we call it
|
/linux-4.4.14/drivers/input/mouse/ |
H A D | appletouch.c | 13 * Thanks to Alex Harper <basilisk@foobox.net> for his inputs.
|
/linux-4.4.14/drivers/input/serio/ |
H A D | hp_sdc.c | 304 static void hp_sdc_tasklet(unsigned long foo) hp_sdc_tasklet() argument
|
/linux-4.4.14/drivers/media/usb/cpia2/ |
H A D | cpia2_usb.c | 140 * NOTE: This is not entirely foolproof with 3 process_frame()
|
/linux-4.4.14/drivers/media/usb/gspca/ |
H A D | ov519.c | 4362 /* Add 11 byte footer to frame, might be useful */ ov511_pkt_scan() 4403 except that they may contain part of the footer), are ov518_pkt_scan()
|
H A D | pac7302.c | 796 int n, lum_offset, footer_length; sd_pkt_scan() local 805 footer_length = 74; sd_pkt_scan() 808 n = (sof - data) - (footer_length + sizeof pac_sof_marker); sd_pkt_scan()
|
H A D | pac7311.c | 579 int n, lum_offset, footer_length; sd_pkt_scan() local 588 footer_length = 26; sd_pkt_scan() 591 n = (sof - data) - (footer_length + sizeof pac_sof_marker); sd_pkt_scan()
|
H A D | vicam.c | 208 a very similar 64 byte footer, which we don't even vicam_dostream()
|
/linux-4.4.14/drivers/gpu/drm/radeon/ |
H A D | radeon_drv.h | 59 * - Add flip-buffers ioctl, deprecate fullscreen foo (keith).
|
/linux-4.4.14/drivers/media/usb/pvrusb2/ |
H A D | pvrusb2-context.c | 162 static int pvr2_context_thread_func(void *foo) pvr2_context_thread_func() argument
|
/linux-4.4.14/drivers/media/usb/usbvision/ |
H A D | usbvision-core.c | 1266 static int foo; usbvision_compress_isochronous() local 1268 if (foo < 1) { usbvision_compress_isochronous() 1271 ++foo; usbvision_compress_isochronous()
|
/linux-4.4.14/drivers/net/wireless/realtek/rtl8xxxu/ |
H A D | Kconfig | 16 memory footprint than the vendor drivers and benetifs
|
/linux-4.4.14/drivers/net/ethernet/intel/i40e/ |
H A D | i40e.h | 122 #define STRINGIFY(foo) #foo
|
/linux-4.4.14/drivers/net/ethernet/natsemi/ |
H A D | ns83820.c | 1401 static irqreturn_t ns83820_irq(int foo, void *data) ns83820_irq() argument
|
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/ |
H A D | cfg80211.h | 221 struct pmkid foo[MAXPMKID - 1]; member in struct:brcmf_cfg80211_pmk_list
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/pcie/ |
H A D | trans.c | 1560 * Fool sparse by faking we release the lock - sparse will iwl_trans_pcie_grab_nic_access() 1575 * Fool sparse by faking we acquiring the lock - sparse will iwl_trans_pcie_release_nic_access()
|
/linux-4.4.14/drivers/net/ethernet/sun/ |
H A D | cassini.c | 4095 * cause resets to occur so fast as to fool the switch cas_link_timer()
|
H A D | sunbmac.c | 570 bp->timer_state = asleep; /* foo on you */ bigmac_timer()
|
H A D | sunhme.c | 855 hp->timer_state = asleep; /* foo on you */ happy_meal_timer()
|
/linux-4.4.14/drivers/net/wan/ |
H A D | dscc4.c | 8 * Specific bug reports/asian food will be welcome.
|
/linux-4.4.14/drivers/nubus/ |
H A D | nubus.c | 149 static inline long nubus_expand32(long foo) nubus_expand32() argument 151 if(foo & 0x00800000) /* 24bit negative */ nubus_expand32() 152 foo |= 0xFF000000; nubus_expand32() 153 return foo; nubus_expand32() 825 unsigned short foo, bar; nubus_add_board() local 826 foo = nubus_get_rom(&rp, 2, bytelanes); nubus_add_board() 828 printk("%04x %04x ", foo, bar); nubus_add_board()
|
/linux-4.4.14/drivers/of/ |
H A D | address.c | 894 * base = of_io_request_and_map(node, 0, "foo");
|
H A D | base.c | 764 * /foo/bar Full path 765 * foo Valid alias 766 * foo/bar Valid alias + relative path
|
H A D | unittest.c | 429 unittest(rc == 0 && !strcmp(strings[0], "foobar"), "of_property_read_string_index() failure; rc=%i\n", rc); of_unittest_property_string()
|
/linux-4.4.14/drivers/of/unittest-data/ |
H A D | tests-overlay.dtsi | 216 property-foo = "bar";
|
H A D | tests-phandle.dtsi | 42 string-property = "foobar";
|
/linux-4.4.14/drivers/parisc/ |
H A D | pdc_stable.c | 270 * device, BUT nothing would prevent some foolish user to set the path to some
|
/linux-4.4.14/drivers/parport/ |
H A D | daisy.c | 108 /* don't be fooled: a mux must have 2 or 4 ports. */ parport_daisy_init()
|
/linux-4.4.14/drivers/pci/host/ |
H A D | pcie-altera-msi.c | 312 MODULE_AUTHOR("Ley Foon Tan <lftan@altera.com>");
|
H A D | pcie-altera.c | 586 MODULE_AUTHOR("Ley Foon Tan <lftan@altera.com>");
|
/linux-4.4.14/drivers/pci/ |
H A D | pci.c | 2677 * device. The footnote for section 6.12 indicates the specific pci_acs_enabled()
|
/linux-4.4.14/drivers/pinctrl/intel/ |
H A D | pinctrl-baytrail.c | 339 * themselves in the foot. byt_gpio_direction_output()
|
/linux-4.4.14/drivers/net/wireless/ |
H A D | at76c50x-usb.c | 2609 MODULE_AUTHOR("Alex <alex@foogod.com>");
|
/linux-4.4.14/drivers/net/wireless/ath/ar5523/ |
H A D | ar5523.c | 1494 int foolen; /* XXX(hch): handle short transfers */ ar5523_load_firmware() local 1529 txblock, sizeof(*txblock), &foolen, ar5523_load_firmware() 1540 fwbuf, mlen, &foolen, ar5523_load_firmware() 1550 rxblock, sizeof(*rxblock), &foolen, ar5523_load_firmware()
|
/linux-4.4.14/drivers/net/wireless/ath/ |
H A D | ath.h | 299 #define ATH_DBG_WARN(foo, arg...) WARN(foo, arg) 300 #define ATH_DBG_WARN_ON_ONCE(foo) WARN_ON_ONCE(foo) 312 #define ATH_DBG_WARN(foo, arg...) do {} while (0) 313 #define ATH_DBG_WARN_ON_ONCE(foo) ({ \ 314 int __ret_warn_once = !!(foo); \
|
/linux-4.4.14/drivers/net/ethernet/nvidia/ |
H A D | forcedeth.c | 3592 static irqreturn_t nv_nic_irq(int foo, void *data) nv_nic_irq() argument 3625 static irqreturn_t nv_nic_irq_optimized(int foo, void *data) nv_nic_irq_optimized() argument 3654 static irqreturn_t nv_nic_irq_tx(int foo, void *data) nv_nic_irq_tx() argument 3766 static irqreturn_t nv_nic_irq_rx(int foo, void *data) nv_nic_irq_rx() argument 3811 static irqreturn_t nv_nic_irq_other(int foo, void *data) nv_nic_irq_other() argument 3878 static irqreturn_t nv_nic_irq_test(int foo, void *data) nv_nic_irq_test() argument 3935 irqreturn_t (*handler)(int foo, void *data); nv_request_irq()
|
/linux-4.4.14/drivers/net/ethernet/qualcomm/ |
H A D | qca_framing.c | 67 * QCAFRM_NOTAIL Footer expected but not found.
|
H A D | qca_framing.h | 57 /* QCA7K footer len */ 91 * Waiting for first 0x55 of footer 95 /* Waiting for second 0x55 of footer */ 127 * QCAFRM_NOTAIL Footer expected but not found.
|
/linux-4.4.14/drivers/net/ethernet/broadcom/ |
H A D | tg3.c | 148 * replace things like '% foo' with '& (foo - 1)'.
|
/linux-4.4.14/drivers/power/ |
H A D | bq24190_charger.c | 675 * of looking foolish and returning 'OVERVOLTAGE' bq24190_charger_get_health()
|
/linux-4.4.14/drivers/gpu/drm/ |
H A D | drm_crtc.c | 621 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot drm_framebuffer_remove()
|
/linux-4.4.14/drivers/cpufreq/ |
H A D | speedstep-lib.c | 288 * cf. 25130917.pdf / page 7, footnote 5 even speedstep_detect_processor()
|
/linux-4.4.14/drivers/eisa/ |
H A D | eisa.ids | 64 AIR0101 "AIR486SE/25/33 EISA Baby AT-foot print motherboard."
|
/linux-4.4.14/drivers/ata/ |
H A D | pata_mpiix.c | 196 without BARs set fools the setup. #2 If you pci_disable_device mpiix_init_one()
|
/linux-4.4.14/drivers/atm/ |
H A D | eni.c | 1459 static void foo(void) 1515 foo(); eni_int() 1905 /*foo();*/ eni_close()
|
/linux-4.4.14/drivers/base/ |
H A D | cpu.c | 300 * something as foolish as this. However, at this point in time, it is cpu_device_release()
|
/linux-4.4.14/drivers/block/ |
H A D | ataflop.c | 987 /* ++ f.a. read twice to avoid being fooled by switcher */ fd_readtrack_check()
|
H A D | pktcdvd.c | 1462 static int kcdrwd(void *foobar) kcdrwd() argument 1464 struct pktcdvd_device *pd = foobar; kcdrwd()
|
H A D | rbd_types.h | 18 /* For format version 2, rbd image 'foo' consists of objects 19 * rbd_id.foo - id of image 32 * For format version 1, rbd image 'foo' consists of objects 33 * foo.rbd - image metadata
|
/linux-4.4.14/drivers/block/drbd/ |
H A D | drbd_nl.c | 1575 * someone fooled it, we need to double check here) drbd_adm_attach()
|
/linux-4.4.14/drivers/gpu/drm/i915/ |
H A D | intel_fbc.c | 32 * variation-less patterns. It comes from keeping the memory footprint small
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvif/ |
H A D | list.h | 36 * We need to keep a list of struct foo in the parent struct bar, i.e. what 41 * struct foo *list_of_foos; -----> struct foo {}, struct foo {}, struct foo{} 54 * struct foo { 68 * struct foo *foo = malloc(...); 70 * list_add(&foo->entry, &bar.list_of_foos); 74 * list_del(&foo->entry); 75 * free(foo); 80 * Looping through the list requires a 'struct foo' as iterator and the 83 * struct foo *iterator; 92 * struct foo *iterator, *next; 152 * struct foo *newfoo = malloc(...); 173 * struct foo *newfoo = malloc(...); 202 * list_del(&foo->entry); 244 * struct foo* f; 245 * f = container_of(&foo->entry, struct foo, entry); 246 * assert(f == foo); 268 * struct foo *first; 269 * first = list_first_entry(&bar->list_of_foos, struct foo, list_of_foos); 283 * struct foo *first; 284 * first = list_last_entry(&bar->list_of_foos, struct foo, list_of_foos); 301 * struct foo *iterator;
|
/linux-4.4.14/arch/sparc/kernel/ |
H A D | tsb.S | 67 * which can be easily rematerialized. %g6 and %g7 foot the
|
/linux-4.4.14/arch/tile/ |
H A D | Kconfig | 176 smaller kernel memory footprint results from using a smaller
|
/linux-4.4.14/arch/tile/include/asm/ |
H A D | linkage.h | 24 * self-named .text.foo section, and if linker feedback collection
|
H A D | page.h | 201 * its ITLB footprint (as well as at PAGE_OFFSET). The last architected
|
/linux-4.4.14/arch/tile/kernel/ |
H A D | asm-offsets.c | 38 void foo(void) foo() function
|
H A D | intvec_32.S | 1508 * The fast swint code is designed to have a small footprint. It does
|
/linux-4.4.14/arch/x86/ |
H A D | Kconfig | 2627 pointers at 32 bits for smaller memory footprint.
|
H A D | Makefile | 35 # e.g.: obj-y += foo_$(BITS).o
|
/linux-4.4.14/arch/x86/entry/ |
H A D | entry_64.S | 126 * When user can change pt_regs->foo always force IRET. That is because 272 /* Use IRET because user could have changed pt_regs->foo */
|
/linux-4.4.14/arch/x86/include/asm/ |
H A D | bitops.h | 326 #if 0 /* Fool kernel-doc since it doesn't do macros yet */
|
H A D | linkage.h | 15 * the callee. This just fools gcc into not spilling into them,
|
H A D | user32.h | 13 u32 foo; member in struct:user_i387_ia32_struct 26 int foo; member in struct:user32_fxsr_struct
|
H A D | user_32.h | 50 long foo; member in struct:user_i387_struct 62 long foo; member in struct:user_fxsr_struct
|
/linux-4.4.14/arch/x86/include/asm/fpu/ |
H A D | types.h | 17 u32 foo; /* FPU Operand Pointer Offset */ member in struct:fregs_state 46 u32 foo; /* FPU Operand Offset */ member in struct:fxregs_state::__anon3046::__anon3048 81 u32 foo; member in struct:swregs_state
|
/linux-4.4.14/arch/x86/kernel/ |
H A D | asm-offsets_32.c | 16 void foo(void); 18 void foo(void) foo() function
|
H A D | test_nx.c | 71 void foo_label(void); 85 fudze_exception_table(&foo_label, address); test_address() 88 "foo_label:\n" test_address() 100 fudze_exception_table(address, &foo_label); test_address()
|
/linux-4.4.14/arch/x86/kernel/fpu/ |
H A D | regset.c | 218 env->foo = fxsave->rdp; convert_from_fxsr() 233 env->foo = fxsave->foo; convert_from_fxsr() 256 fxsave->rdp = env->foo; convert_to_fxsr() 261 fxsave->foo = env->foo; convert_to_fxsr()
|
/linux-4.4.14/arch/x86/math-emu/ |
H A D | fpu_aux.c | 43 oaddr = (struct address *)&soft->foo; fpstate_init_soft()
|
H A D | fpu_system.h | 78 #define operand_address (*(struct address *)&I387->soft.foo)
|
/linux-4.4.14/arch/x86/um/ |
H A D | bugs_32.c | 35 unsigned long foo = 0; arch_check_bugs() local 36 __asm__ __volatile__("cmovz %0, %1" : "=r" (foo) : "0" (foo)); arch_check_bugs()
|
H A D | signal.c | 95 env[5] = fxsave->foo; convert_fxsr_to_user() 132 fxsave->foo = env[5]; convert_fxsr_from_user()
|
H A D | user-offsets.c | 31 void foo(void) foo() function
|
/linux-4.4.14/arch/x86/um/shared/sysdep/ |
H A D | kernel-offsets.h | 15 void foo(void) foo() function
|
/linux-4.4.14/block/ |
H A D | bsg.c | 735 * fool-proof error detection bsg_put_device()
|
/linux-4.4.14/drivers/block/zram/ |
H A D | zram_drv.h | 54 * footprint small so we can squeeze size and flags into a field.
|
/linux-4.4.14/drivers/cdrom/ |
H A D | cdrom.c | 88 will do their best to follow in his footsteps
|
/linux-4.4.14/drivers/char/ |
H A D | nwflash.c | 328 * reset footbridge to the correct offset 0 (...0..3) erase_block() 468 * program footbridge to the correct offset...0..3 write_block()
|
H A D | virtio_console.c | 824 /* Userspace could be out to fool us */ port_fops_write()
|
/linux-4.4.14/drivers/char/xilinx_hwicap/ |
H A D | xilinx_hwicap.c | 67 * cp foo.bit /dev/icap0 69 * Note that unless foo.bit is an appropriately constructed partial
|
/linux-4.4.14/drivers/clk/qcom/ |
H A D | gcc-ipq806x.c | 3052 /* Set GMAC footswitch sleep/wakeup values */ gcc_ipq806x_probe()
|
/linux-4.4.14/Documentation/ |
H A D | unaligned-memory-access.txt | 78 struct foo { 111 struct foo {
|
/linux-4.4.14/Documentation/usb/ |
H A D | gadget_multi.txt | 127 * Footnotes
|
H A D | persist.txt | 154 If the kernel gets fooled in this way, it's almost certain to cause
|
/linux-4.4.14/Documentation/video4linux/ |
H A D | v4l2-controls.txt | 48 struct foo_dev { 54 struct foo_dev *foo; 58 v4l2_ctrl_handler_init(&foo->ctrl_handler, nr_of_controls); 68 struct foo_dev { 76 foo->v4l2_dev.ctrl_handler = &foo->ctrl_handler; 78 Where foo->v4l2_dev is of type struct v4l2_device. 87 struct foo_dev { 95 foo->sd.ctrl_handler = &foo->ctrl_handler; 97 Where foo->sd is of type struct v4l2_subdev. 116 v4l2_ctrl_handler_free(&foo->ctrl_handler); 160 v4l2_ctrl_handler_init(&foo->ctrl_handler, nr_of_controls); 161 v4l2_ctrl_new_std(&foo->ctrl_handler, &foo_ctrl_ops, 163 v4l2_ctrl_new_std(&foo->ctrl_handler, &foo_ctrl_ops, 165 v4l2_ctrl_new_std_menu(&foo->ctrl_handler, &foo_ctrl_ops, 169 v4l2_ctrl_new_int_menu(&foo->ctrl_handler, &foo_ctrl_ops, 174 v4l2_ctrl_new_std_menu_items(&foo->ctrl_handler, &foo_ctrl_ops, 178 if (foo->ctrl_handler.error) { 179 int err = foo->ctrl_handler.error; 181 v4l2_ctrl_handler_free(&foo->ctrl_handler); 226 v4l2_ctrl_handler_setup(&foo->ctrl_handler); 235 static const struct v4l2_ctrl_ops foo_ctrl_ops = { 236 .s_ctrl = foo_s_ctrl, 241 static int foo_s_ctrl(struct v4l2_ctrl *ctrl) 243 struct foo *state = container_of(ctrl->handler, struct foo, ctrl_handler); 337 static int foo_g_volatile_ctrl(struct v4l2_ctrl *ctrl) 428 ctrl = v4l2_ctrl_new_custom(&foo->ctrl_handler, &ctrl_filter, NULL); 470 struct foo { 492 static int foo_s_ctrl(struct v4l2_ctrl *ctrl) 494 struct foo *state = container_of(ctrl->handler, struct foo, ctrl_handler); 532 And in foo_s_ctrl you can use these pointers directly: state->mute->val. 559 A common type of control cluster is one that handles 'auto-foo/foo'-type 718 ctrl = v4l2_ctrl_new_custom(&foo->ctrl_handler, &ctrl_private, NULL);
|
/linux-4.4.14/Documentation/virtual/kvm/ |
H A D | mmu.txt | 24 - footprint: keep the amount of pinned kernel memory low (most memory
|
/linux-4.4.14/Documentation/virtual/uml/ |
H A D | UserModeLinux-HOWTO.txt | 4177 debugger is defunct and without some fancy footwork, another gdb can't 4178 attach to it. So, this is how the fancy footwork goes:
|
/linux-4.4.14/Documentation/vm/ |
H A D | numa | 103 the scheduler does not take a task's NUMA footprint into account directly.
|
H A D | slub.txt | 302 while [ 1 ]; do slabinfo -X >> FOO_STATS; sleep 1; done 305 slabinfo-gnuplot.sh FOO_STATS [FOO_STATS2 .. FOO_STATSN] 310 - Slabcache Totals: FOO_STATS-totals.png 311 - Slabs sorted by size: FOO_STATS-slabs-by-size.png 312 - Slabs sorted by loss: FOO_STATS-slabs-by-loss.png 337 in `slabinfo -X >> FOO_STATS; sleep 1;' case, using
|
/linux-4.4.14/Documentation/w1/masters/ |
H A D | w1-gpio | 19 static struct w1_gpio_platform_data foo_w1_gpio_pdata = { 24 static struct platform_device foo_w1_device = { 27 .dev.platform_data = &foo_w1_gpio_pdata, 31 at91_set_GPIO_periph(foo_w1_gpio_pdata.pin, 1); 32 at91_set_multi_drive(foo_w1_gpio_pdata.pin, 1); 33 platform_device_register(&foo_w1_device);
|
/linux-4.4.14/Documentation/x86/ |
H A D | intel_mpx.txt | 243 However, if users did this, the kernel might be fooled in to unmaping an
|
H A D | tlb.txt | 73 1. A footnote in Intel's SDM "4.10.4.2 Recommended Invalidation"
|
/linux-4.4.14/Documentation/zh_CN/ |
H A D | CodingStyle | 233 。称一个全局函数为“foo”是一个难以饶恕的错误。 523 #define FOO(x) \ 534 #define FOO(val) bar(index, val) 539 3) 作为左值的带参数的宏: FOO(x) = y;如果有人把FOO变成一个内联函数的话,这种用 662 compile-command: "gcc -DMAGIC_DEBUG_FLAG foo.c"
|
/linux-4.4.14/Documentation/zh_CN/arm/ |
H A D | kernel_user_helpers.txt | 118 void foo()
|
/linux-4.4.14/Documentation/zh_CN/filesystems/ |
H A D | sysfs.txt | 121 static DEVICE_ATTR(foo, S_IWUSR | S_IRUGO, show_foo, store_foo); 127 .name = "foo",
|
/linux-4.4.14/ |
H A D | MAINTAINERS | 581 M: Ley Foon Tan <lftan@altera.com> 1072 ARM/FOOTBRIDGE ARCHITECTURE 1078 F: arch/arm/mach-footbridge/ 7550 M: Ley Foon Tan <lftan@altera.com> 8120 M: Ley Foon Tan <lftan@altera.com> 8229 M: Ley Foon Tan <lftan@altera.com>
|
H A D | Makefile | 762 # disallow errors like 'EXPORT_GPL(foo);' with missing header 765 # require functions to have arguments in prototypes, not empty 'int foo()'
|
/linux-4.4.14/arch/alpha/boot/ |
H A D | misc.c | 165 /* put in temp area to reduce initial footprint */ decompress_kernel()
|
/linux-4.4.14/arch/alpha/kernel/ |
H A D | asm-offsets.c | 14 void foo(void) foo() function
|
/linux-4.4.14/arch/arc/ |
H A D | Kconfig.debug | 10 This increases the resident kernel footprint and will cause less
|
/linux-4.4.14/arch/arm/ |
H A D | Kconfig | 434 bool "FootBridge" 436 select FOOTBRIDGE 443 ("FootBridge"), such as the Simtec CATS and the Rebel NetWinder. 837 source "arch/arm/mach-footbridge/Kconfig" 1730 rounding up to page size, the actual memory footprint is usually
|
H A D | Kconfig.debug | 252 bool "Kernel low-level debugging messages via footbridge serial port" 253 depends on FOOTBRIDGE 256 their output to the serial port in the DC21285 (Footbridge). 266 bool "Kernel low-level debugging messages via footbridge 8250 at PCI COM1" 267 depends on FOOTBRIDGE 1361 (FOOTBRIDGE && !DEBUG_DC21285_PORT) || \ 1413 default 0x7c0003f8 if FOOTBRIDGE 1547 default 0xfee003f8 if FOOTBRIDGE 1570 default 0 if FOOTBRIDGE || ARCH_IOP32X || DEBUG_BCM_5301X || \ 1589 default y if ARCH_EBSA110 || FOOTBRIDGE || ARCH_GEMINI || ARCH_RPC
|
H A D | Makefile | 171 machine-$(CONFIG_ARCH_FOOTBRIDGE) += footbridge
|
/linux-4.4.14/arch/c6x/kernel/ |
H A D | asm-offsets.c | 13 void foo(void) foo() function
|
/linux-4.4.14/arch/cris/arch-v10/kernel/ |
H A D | signal.c | 80 /* make sure the U-flag is set so user-mode cannot fool us */ restore_sigcontext()
|
/linux-4.4.14/arch/cris/arch-v10/lib/ |
H A D | usercopy.c | 81 This method is not foolproof; it assumes that the "asm reg" __copy_user() 164 /* Having a separate by-four loops cuts down on cache footprint. __copy_user() 247 This method is not foolproof; it assumes that the "asm reg" __copy_user_zeroing() 418 This method is not foolproof; it assumes that the "asm reg" __do_clear_user() 498 /* Having a separate by-four loops cuts down on cache footprint. __do_clear_user()
|
/linux-4.4.14/arch/cris/arch-v32/lib/ |
H A D | usercopy.c | 132 /* Having a separate by-four loops cuts down on cache footprint. __copy_user() 369 This method is not foolproof; it assumes that the "asm reg" __do_clear_user() 444 /* Having a separate by-four loops cuts down on cache footprint. __do_clear_user()
|
/linux-4.4.14/arch/cris/arch-v32/mach-a3/ |
H A D | arbiter.c | 18 * | foo arbiter|----| Internal memory| 325 /* Propagate allocation from foo to bar */ crisv32_arbiter_allocate_bandwidth()
|
/linux-4.4.14/arch/cris/boot/rescue/ |
H A D | rescue_v32.lds | 37 /* Get rid of stuff from EXPORT_SYMBOL(foo). */
|
/linux-4.4.14/fs/ext4/ |
H A D | super.c | 954 static void init_once(void *foo) init_once() argument 956 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo; init_once()
|
/linux-4.4.14/fs/f2fs/ |
H A D | Kconfig | 28 - current memory footprint consumed by f2fs.
|
H A D | debug.c | 129 * This function calculates memory footprint. 334 /* memory footprint */ stat_show()
|
H A D | f2fs.h | 512 unsigned int ram_thresh; /* control the memory footprint */ 1312 #define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino)
|
H A D | gc.c | 799 switch (GET_SUM_TYPE((&sum->footer))) { do_garbage_collect() 810 stat_inc_seg_count(sbi, GET_SUM_TYPE((&sum->footer)), gc_type); do_garbage_collect()
|
H A D | node.c | 1817 sum_entry->nid = rn->footer.nid; restore_node_summary()
|
H A D | node.h | 25 /* control the memory footprint threshold (10MB per 1GB ram) */ 224 old_flag = le32_to_cpu(rn->footer.flag); fill_node_footer() 226 rn->footer.nid = cpu_to_le32(nid); fill_node_footer() 227 rn->footer.ino = cpu_to_le32(ino); fill_node_footer() 230 rn->footer.flag = cpu_to_le32((ofs << OFFSET_BIT_SHIFT) | fill_node_footer() 238 memcpy(&dst_rn->footer, &src_rn->footer, sizeof(struct node_footer)); copy_node_footer() 246 rn->footer.cp_ver = ckpt->checkpoint_ver; fill_node_footer_blkaddr() 247 rn->footer.next_blkaddr = cpu_to_le32(blkaddr); fill_node_footer_blkaddr() 253 return le32_to_cpu(rn->footer.ino); ino_of_node() 259 return le32_to_cpu(rn->footer.nid); nid_of_node() 265 unsigned flag = le32_to_cpu(rn->footer.flag); ofs_of_node() 272 return le64_to_cpu(rn->footer.cp_ver); cpver_of_node() 278 return le32_to_cpu(rn->footer.next_blkaddr); next_blkaddr_of_node() 345 * - Mark cold node blocks in their node footer 366 return le32_to_cpu(rn->footer.flag) & (1 << type); is_node() 376 unsigned int flag = le32_to_cpu(rn->footer.flag); set_cold_node() 382 rn->footer.flag = cpu_to_le32(flag); set_cold_node() 388 unsigned int flag = le32_to_cpu(rn->footer.flag); set_mark() 393 rn->footer.flag = cpu_to_le32(flag); set_mark()
|
H A D | segment.c | 971 sum_footer = &(curseg->sum_blk->footer); reset_curseg()
|
H A D | segment.h | 86 #define GET_SUM_TYPE(footer) ((footer)->entry_type) 87 #define SET_SUM_TYPE(footer, type) ((footer)->entry_type = type)
|
H A D | super.c | 264 static void init_once(void *foo) init_once() argument 266 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo; init_once()
|
H A D | xattr.h | 95 * | .e_name = "foo" |
|
/linux-4.4.14/fs/fat/ |
H A D | cache.c | 38 static void init_once(void *foo) init_once() argument 40 struct fat_cache *cache = (struct fat_cache *)foo; init_once()
|
H A D | inode.c | 662 static void init_once(void *foo) init_once() argument 664 struct msdos_inode_info *ei = (struct msdos_inode_info *)foo; init_once()
|
H A D | namei_msdos.c | 279 /* Have to do it due to foo vs. .foo conflicts */ msdos_create() 360 /* foo vs .foo situation */ msdos_mkdir() 465 /* "foo" -> ".foo" case. just change the ATTR_HIDDEN */ do_msdos_rename()
|
/linux-4.4.14/fs/fuse/ |
H A D | inode.c | 1246 static void fuse_inode_init_once(void *foo) fuse_inode_init_once() argument 1248 struct inode *inode = foo; fuse_inode_init_once()
|
/linux-4.4.14/fs/gfs2/ |
H A D | main.c | 37 static void gfs2_init_inode_once(void *foo) gfs2_init_inode_once() argument 39 struct gfs2_inode *ip = foo; gfs2_init_inode_once() 48 static void gfs2_init_glock_once(void *foo) gfs2_init_glock_once() argument 50 struct gfs2_glock *gl = foo; gfs2_init_glock_once() 61 static void gfs2_init_gl_aspace_once(void *foo) gfs2_init_gl_aspace_once() argument 63 struct gfs2_glock *gl = foo; gfs2_init_gl_aspace_once()
|
/linux-4.4.14/fs/hpfs/ |
H A D | super.c | 253 static void init_once(void *foo) init_once() argument 255 struct hpfs_inode_info *ei = (struct hpfs_inode_info *) foo; init_once()
|
/linux-4.4.14/fs/hugetlbfs/ |
H A D | inode.c | 959 static void init_once(void *foo) init_once() argument 961 struct hugetlbfs_inode_info *ei = (struct hugetlbfs_inode_info *)foo; init_once()
|
/linux-4.4.14/fs/ |
H A D | inode.c | 370 static void init_once(void *foo) init_once() argument 372 struct inode *inode = (struct inode *) foo; init_once()
|
H A D | namei.c | 3414 * (foo/., foo/.., /////) filename_create() 3435 * Special case - lookup gave negative, but... we had foo/bar/ filename_create()
|
/linux-4.4.14/fs/isofs/ |
H A D | inode.c | 85 static void init_once(void *foo) init_once() argument 87 struct iso_inode_info *ei = foo; init_once()
|
/linux-4.4.14/fs/jffs2/ |
H A D | nodemgmt.c | 656 addedsize = 0; /* To fool the refiling code later */ jffs2_mark_node_obsolete()
|
H A D | super.c | 58 static void jffs2_i_init_once(void *foo) jffs2_i_init_once() argument 60 struct jffs2_inode_info *f = foo; jffs2_i_init_once()
|
/linux-4.4.14/fs/jfs/ |
H A D | super.c | 880 static void init_once(void *foo) init_once() argument 882 struct jfs_inode_info *jfs_ip = (struct jfs_inode_info *) foo; init_once()
|
/linux-4.4.14/fs/minix/ |
H A D | inode.c | 82 static void init_once(void *foo) init_once() argument 84 struct minix_inode_info *ei = (struct minix_inode_info *) foo; init_once()
|
/linux-4.4.14/fs/ncpfs/ |
H A D | inode.c | 72 static void init_once(void *foo) init_once() argument 74 struct ncp_inode_info *ei = (struct ncp_inode_info *) foo; init_once()
|
/linux-4.4.14/fs/nfs/filelayout/ |
H A D | filelayout.h | 37 * We store each index as a u8 (u32 on the wire) to keep the memory footprint
|
/linux-4.4.14/fs/nfs/ |
H A D | inode.c | 1915 static void init_once(void *foo) init_once() argument 1917 struct nfs_inode *nfsi = (struct nfs_inode *) foo; init_once()
|
H A D | super.c | 1238 * boolean options: foo/nofoo nfs_parse_mount_options()
|
/linux-4.4.14/fs/nfsd/ |
H A D | export.c | 873 * since its harder to fool a kernel module than a user space program.
|
H A D | vfs.c | 1995 * However, `cp foo bar' should fail nevertheless when bar is nfsd_permission()
|
/linux-4.4.14/lib/ |
H A D | decompress_unxz.c | 36 * Stream Footer (12)
|
H A D | dynamic_debug.c | 897 * modprobe foo finds foo.params in boot-args, strips "foo.", and
|
H A D | idr.c | 991 * whole idea of ida is to have small memory foot print. ida_get_new_above()
|
/linux-4.4.14/lib/xz/ |
H A D | xz_dec_stream.c | 120 * and Stream Footer. The Block Header is the biggest (1 KiB) 421 /* Decode the Stream Footer field (the last 12 bytes of the .xz Stream) */ dec_stream_footer() 424 if (!memeq(s->temp.buf + 10, FOOTER_MAGIC, FOOTER_MAGIC_SIZE)) dec_stream_footer()
|
H A D | xz_stream.h | 31 #define FOOTER_MAGIC "YZ" macro 32 #define FOOTER_MAGIC_SIZE 2 macro
|