/linux-4.4.14/arch/arm/plat-omap/include/plat/ |
D | dmtimer.h | 116 unsigned posted:1; member 280 int posted) in __omap_dm_timer_read() argument 282 if (posted) in __omap_dm_timer_read() 290 u32 reg, u32 val, int posted) in __omap_dm_timer_write() argument 292 if (posted) in __omap_dm_timer_write() 336 if (timer->posted) in __omap_dm_timer_enable_posted() 340 timer->posted = OMAP_TIMER_NONPOSTED; in __omap_dm_timer_enable_posted() 348 timer->posted = OMAP_TIMER_POSTED; in __omap_dm_timer_enable_posted() 368 int posted, unsigned long rate) in __omap_dm_timer_stop() argument 372 l = __omap_dm_timer_read(timer, OMAP_TIMER_CTRL_REG, posted); in __omap_dm_timer_stop() [all …]
|
/linux-4.4.14/net/rds/ |
D | iw_send.c | 343 unsigned int avail, posted, got = 0, advertise; in rds_iw_send_grab_credits() local 353 posted = IB_GET_POST_CREDITS(oldval); in rds_iw_send_grab_credits() 357 wanted, avail, posted); in rds_iw_send_grab_credits() 360 if (avail && !posted) in rds_iw_send_grab_credits() 380 if (posted && (got || need_posted)) { in rds_iw_send_grab_credits() 381 advertise = min_t(unsigned int, posted, max_posted); in rds_iw_send_grab_credits() 414 void rds_iw_advertise_credits(struct rds_connection *conn, unsigned int posted) in rds_iw_advertise_credits() argument 418 if (posted == 0) in rds_iw_advertise_credits() 421 atomic_add(IB_SET_POST_CREDITS(posted), &ic->i_credits); in rds_iw_advertise_credits() 502 u32 posted; in rds_iw_xmit() local [all …]
|
D | ib_send.c | 357 unsigned int avail, posted, got = 0, advertise; in rds_ib_send_grab_credits() local 367 posted = IB_GET_POST_CREDITS(oldval); in rds_ib_send_grab_credits() 371 wanted, avail, posted); in rds_ib_send_grab_credits() 374 if (avail && !posted) in rds_ib_send_grab_credits() 394 if (posted && (got || need_posted)) { in rds_ib_send_grab_credits() 395 advertise = min_t(unsigned int, posted, max_posted); in rds_ib_send_grab_credits() 428 void rds_ib_advertise_credits(struct rds_connection *conn, unsigned int posted) in rds_ib_advertise_credits() argument 432 if (posted == 0) in rds_ib_advertise_credits() 435 atomic_add(IB_SET_POST_CREDITS(posted), &ic->i_credits); in rds_ib_advertise_credits() 497 u32 posted; in rds_ib_xmit() local [all …]
|
D | iw_recv.c | 230 unsigned int posted = 0; in rds_iw_recv_refill() local 264 posted++; in rds_iw_recv_refill() 268 if (ic->i_flowctl && posted) in rds_iw_recv_refill() 269 rds_iw_advertise_credits(conn, posted); in rds_iw_recv_refill()
|
D | ib_recv.c | 380 unsigned int posted = 0; in rds_ib_recv_refill() local 422 posted++; in rds_ib_recv_refill() 426 if (ic->i_flowctl && posted) in rds_ib_recv_refill() 427 rds_ib_advertise_credits(conn, posted); in rds_ib_recv_refill()
|
D | iw.h | 362 void rds_iw_advertise_credits(struct rds_connection *conn, unsigned int posted);
|
D | ib.h | 404 void rds_ib_advertise_credits(struct rds_connection *conn, unsigned int posted);
|
/linux-4.4.14/drivers/scsi/snic/ |
D | vnic_dev.c | 270 u32 posted; in _svnic_dev_cmd2() local 273 posted = ioread32(&dc2c->wq_ctrl->posted_index); in _svnic_dev_cmd2() 275 if (posted == 0xFFFFFFFF) { /* check for hardware gone */ in _svnic_dev_cmd2() 280 new_posted = (posted + 1) % DEVCMD2_RING_SIZE; in _svnic_dev_cmd2() 281 dc2c->cmd_ring[posted].cmd = cmd; in _svnic_dev_cmd2() 282 dc2c->cmd_ring[posted].flags = 0; in _svnic_dev_cmd2() 285 dc2c->cmd_ring[posted].flags |= DEVCMD2_FNORESULT; in _svnic_dev_cmd2() 289 dc2c->cmd_ring[posted].args[i] = vdev->args[i]; in _svnic_dev_cmd2() 299 if (dc2c->cmd_ring[posted].flags & DEVCMD2_FNORESULT) in _svnic_dev_cmd2()
|
/linux-4.4.14/drivers/net/ethernet/cisco/enic/ |
D | vnic_dev.c | 306 u32 posted = dc2c->posted; in _vnic_dev_cmd2() local 313 new_posted = (posted + 1) % DEVCMD2_RING_SIZE; in _vnic_dev_cmd2() 317 _CMD_N(cmd), fetch_index, posted); in _vnic_dev_cmd2() 320 dc2c->cmd_ring[posted].cmd = cmd; in _vnic_dev_cmd2() 321 dc2c->cmd_ring[posted].flags = 0; in _vnic_dev_cmd2() 324 dc2c->cmd_ring[posted].flags |= DEVCMD2_FNORESULT; in _vnic_dev_cmd2() 327 dc2c->cmd_ring[posted].args[i] = vdev->args[i]; in _vnic_dev_cmd2() 335 dc2c->posted = new_posted; in _vnic_dev_cmd2() 337 if (dc2c->cmd_ring[posted].flags & DEVCMD2_FNORESULT) in _vnic_dev_cmd2() 411 vdev->devcmd2->posted = fetch_index; in vnic_dev_init_devcmd2()
|
D | vnic_wq.h | 100 u32 posted; member
|
/linux-4.4.14/arch/arm/plat-omap/ |
D | dmtimer.c | 74 return __omap_dm_timer_read(timer, reg, timer->posted); in omap_dm_timer_read_reg() 91 __omap_dm_timer_write(timer, reg, value, timer->posted); in omap_dm_timer_write_reg() 135 timer->posted = 0; in omap_dm_timer_reset() 467 __omap_dm_timer_stop(timer, timer->posted, rate); in omap_dm_timer_stop() 584 __omap_dm_timer_load_start(timer, l, load, timer->posted); in omap_dm_timer_set_load_start() 749 return __omap_dm_timer_read_counter(timer, timer->posted); in omap_dm_timer_read_counter()
|
/linux-4.4.14/arch/arm/mach-omap2/ |
D | timer.c | 233 int posted) in omap_dm_timer_init_one() argument 310 if (posted) in omap_dm_timer_init_one() 314 if (posted != timer->posted) in omap_dm_timer_init_one()
|
/linux-4.4.14/Documentation/scsi/ |
D | cxgb3i.txt | 22 payload into pre-posted final destination host-memory buffers based 37 if possible, will be directly placed into the pre-posted host DDP
|
D | hptiop.txt | 108 For requests allocated in IOP memory, the request offset is posted to 112 is posted to the outbound queue. If IOP_REQUEST_FLAG_OUTPUT_CONTEXT 114 posted instead.
|
D | lpfc.txt | 58 The proposed patch was posted to the linux-scsi mailing list. The patch
|
D | ChangeLog.sym53c8xx | 257 bridge misbehaviour regarding posted write flushing. 497 only PCI write transactions that may be posted.
|
/linux-4.4.14/drivers/net/ethernet/brocade/bna/ |
D | bfa_msgq.c | 240 int posted = 0; in bfa_msgq_cmdq_ci_update() local 252 posted = 1; in bfa_msgq_cmdq_ci_update() 259 if (posted) in bfa_msgq_cmdq_ci_update()
|
/linux-4.4.14/Documentation/ |
D | io_ordering.txt | 5 chipset to flush pending writes to the device before any reads are posted. A
|
D | HOWTO | 253 - Known regressions in each release are periodically posted to the
|
D | SubmittingPatches | 589 idea was not posted in a public forum. That said, if we diligently credit our
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | locking.txt | 174 Comment: This is a per-CPU lock and it is used for VT-d posted-interrupts. 175 When VT-d posted-interrupts is supported and the VM has assigned
|
D | api.txt | 959 posted to userspace as KVM_EXIT_MMIO exits.
|
/linux-4.4.14/arch/m68k/fpsp040/ |
D | x_snan.S | 18 | disabled with the exception posted. If the instruction is not move_ 19 | out, the dest. is not modified, and the exception is posted.
|
/linux-4.4.14/Documentation/device-mapper/ |
D | persistent-data.txt | 10 - Another btree-based caching target posted to dm-devel
|
/linux-4.4.14/drivers/net/ethernet/emulex/benet/ |
D | be_main.c | 190 static void be_rxq_notify(struct be_adapter *adapter, u16 qid, u16 posted) in be_rxq_notify() argument 198 val |= posted << DB_RQ_NUM_POSTED_SHIFT; in be_rxq_notify() 205 u16 posted) in be_txq_notify() argument 213 val |= (posted & DB_TXULP_NUM_POSTED_MASK) << DB_TXULP_NUM_POSTED_SHIFT; in be_txq_notify() 2307 u32 posted, page_offset = 0, notify = 0; in be_post_rx_frags() local 2310 for (posted = 0; posted < frags_needed && !page_info->page; posted++) { in be_post_rx_frags() 2362 if (posted) { in be_post_rx_frags() 2363 atomic_add(posted, &rxq->used); in be_post_rx_frags() 2367 notify = min(MAX_NUM_POST_ERX_DB, posted); in be_post_rx_frags() 2369 posted -= notify; in be_post_rx_frags() [all …]
|
/linux-4.4.14/Documentation/scheduler/ |
D | completion.txt | 236 else it consumes one posted completion and returns true. 241 call completion_done(), which returns false if there are no posted
|
/linux-4.4.14/Documentation/development-process/ |
D | 6.Followthrough | 4 addition of your own engineering skills, have posted a perfect series of 12 and, as a result, is heavily oriented toward the improvement of posted 80 going to remember all the details of the code you posted the last time
|
D | 7.AdvancedTopics | 150 posted by others. In addition, reviewers are forever in short supply; by 156 which has been posted by those with more experience. Even code written by
|
D | 3.Early-stage | 38 and posted this: 171 posted by others. Beyond that, high-level designs often hide problems
|
D | 2.Process | 154 - Early review. Patches are posted to the relevant mailing list, and 266 been selected by Andrew directly. These patches may have been posted on a
|
D | 1.Intro | 51 git and reviewing patches posted by others.
|
D | 5.Posting | 106 - Do not overdo it, though. One developer once posted a set of edits
|
/linux-4.4.14/Documentation/networking/ |
D | rxrpc.txt | 537 (5) The request data should then be posted to the server socket using a series 549 (6) The reply data will then be posted to the server socket for recvmsg() to 615 ignored since the call for which the message was posted may have gone by 625 (6) The first request data packet will then be posted to the server socket for 629 Subsequent request data will be posted to the server socket for recvmsg() 637 (8) The reply data should then be posted to the server socket using a series 645 (9) The final ACK from the client will be posted for retrieval by recvmsg()
|
D | netdev-FAQ.txt | 23 Q: How do the changes posted to netdev make their way into Linux?
|
/linux-4.4.14/Documentation/RCU/ |
D | rcubarrier.txt | 82 1. Prevent any new RCU callbacks from being posted. 174 RCU callbacks will be posted. The rcu_barrier() call on line 53 waits
|
D | stallwarn.txt | 141 prints the number of non-lazy callbacks posted since the last call to
|
D | RTFP.txt | 1391 First operating counter-based realtime RCU patch posted to LKML. 1405 First operating counter-based realtime RCU patch posted to LKML, 2705 ,posted-at = {2012-05-03 09:12:04}
|
/linux-4.4.14/Documentation/vm/ |
D | unevictable-lru.txt | 112 lists and statistics originally proposed and posted by Christoph Lameter. 249 posted by Nick Piggin in an RFC patch entitled "mm: mlocked pages off LRU". 250 Nick posted his patch as an alternative to a patch posted by Christoph Lameter
|
/linux-4.4.14/Documentation/cgroups/ |
D | memory.txt | 94 controller was posted by Balbir Singh [1]. At the time the RFC was posted 97 for memory control. The first RSS controller was posted by Balbir Singh[2] 98 in Feb 2007. Pavel Emelianov [3][4][5] has since posted three versions of the
|
/linux-4.4.14/drivers/staging/lustre/lustre/ptlrpc/ |
D | service.c | 290 int posted = 0; in ptlrpc_server_post_idle_rqbds() local 297 return posted; in ptlrpc_server_post_idle_rqbds() 315 posted = 1; in ptlrpc_server_post_idle_rqbds()
|
/linux-4.4.14/drivers/scsi/lpfc/ |
D | lpfc_debugfs.c | 272 int i, j, found, posted, low; in lpfc_debugfs_hbqinfo_data() local 300 posted = 0; in lpfc_debugfs_hbqinfo_data() 302 posted++; in lpfc_debugfs_hbqinfo_data() 308 hip->buffer_count, hip->init_count, hip->add_count, posted); in lpfc_debugfs_hbqinfo_data() 328 low = hbqs->hbqPutIdx - posted; in lpfc_debugfs_hbqinfo_data()
|
D | lpfc_sli.c | 1867 uint32_t i, posted = 0; in lpfc_sli_hbqbuf_fill_hbqs() local 1898 posted++; in lpfc_sli_hbqbuf_fill_hbqs() 1903 return posted; in lpfc_sli_hbqbuf_fill_hbqs()
|
/linux-4.4.14/Documentation/PCI/ |
D | pci.txt | 606 call this "Write Posting" because the write completion is "posted" to 622 readb(safe_mmio_reg); /* flush posted write */
|
/linux-4.4.14/drivers/scsi/aic7xxx/ |
D | aic7xxx.seq | 93 /* Has the driver posted any work for us? */
|