Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
1
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
230982d
Breadcrumbs
linux
/
drivers
/
gpu
/
drm
/
i915
/
gt
/
intel_engine_pool.h
Blame
Blame
Latest commit
History
History
34 lines (27 loc) · 847 Bytes
Breadcrumbs
linux
/
drivers
/
gpu
/
drm
/
i915
/
gt
/
intel_engine_pool.h
Top
File metadata and controls
Code
Blame
34 lines (27 loc) · 847 Bytes
Raw
/* * SPDX-License-Identifier: MIT * * Copyright © 2014-2018 Intel Corporation */ #ifndef INTEL_ENGINE_POOL_H #define INTEL_ENGINE_POOL_H #include "intel_engine_pool_types.h" #include "i915_active.h" #include "i915_request.h" struct intel_engine_pool_node * intel_engine_get_pool(struct intel_engine_cs *engine, size_t size); static inline int intel_engine_pool_mark_active(struct intel_engine_pool_node *node, struct i915_request *rq) { return i915_active_add_request(&node->active, rq); } static inline void intel_engine_pool_put(struct intel_engine_pool_node *node) { i915_active_release(&node->active); } void intel_engine_pool_init(struct intel_engine_pool *pool); void intel_engine_pool_park(struct intel_engine_pool *pool); void intel_engine_pool_fini(struct intel_engine_pool *pool); #endif /* INTEL_ENGINE_POOL_H */
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
You can’t perform that action at this time.