diff --git c/core/includes/entity.inc w/core/includes/entity.inc
index 463dcd0..0fcbb0f 100644
--- c/core/includes/entity.inc
+++ w/core/includes/entity.inc
@@ -33,6 +33,8 @@ function entity_render_cache_clear() {
  *
  * @see \Drupal\Core\Entity\EntityManagerInterface::getBundleInfo()
  * @see \Drupal\Core\Entity\EntityManagerInterface::getAllBundleInfo()
+ *
+ * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0.
  */
 function entity_get_bundles($entity_type = NULL) {
   if (isset($entity_type)) {
@@ -60,6 +62,8 @@ function entity_get_bundles($entity_type = NULL) {
  * @see \Drupal\Core\Entity\EntityStorageInterface
  * @see \Drupal\Core\Entity\Sql\SqlContentEntityStorage
  * @see \Drupal\Core\Entity\Query\QueryInterface
+ *
+ * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0.
  */
 function entity_load($entity_type, $id, $reset = FALSE) {
   $controller = \Drupal::entityManager()->getStorage($entity_type);
@@ -84,6 +88,8 @@ function entity_load($entity_type, $id, $reset = FALSE) {
  * @see \Drupal\Core\Entity\EntityManagerInterface
  * @see \Drupal\Core\Entity\EntityStorageInterface
  * @see \Drupal\Core\Entity\Sql\SqlContentEntityStorage
+ *
+ * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0.
  */
 function entity_revision_load($entity_type, $revision_id) {
   return \Drupal::entityManager()
@@ -98,6 +104,8 @@ function entity_revision_load($entity_type, $revision_id) {
  *   The entity type to load, e.g. node or user.
  * @param $revision_id
  *   The revision ID to delete.
+ *
+ * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0.
  */
 function entity_revision_delete($entity_type, $revision_id) {
   \Drupal::entityManager()
@@ -138,6 +146,8 @@ function entity_revision_delete($entity_type, $revision_id) {
  * @see \Drupal\Core\Entity\EntityStorageInterface
  * @see \Drupal\Core\Entity\Sql\SqlContentEntityStorage
  * @see \Drupal\Core\Entity\Query\QueryInterface
+ *
+ * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0.
  */
 function entity_load_multiple($entity_type, array $ids = NULL, $reset = FALSE) {
   $controller = \Drupal::entityManager()->getStorage($entity_type);
@@ -159,6 +169,8 @@ function entity_load_multiple($entity_type, array $ids = NULL, $reset = FALSE) {
  * @return array
  *   An array of entity objects indexed by their IDs. Returns an empty array if
  *   no matching entities are found.
+ *
+ * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0.
  */
 function entity_load_multiple_by_properties($entity_type, array $values) {
   return \Drupal::entityManager()
@@ -181,6 +193,8 @@ function entity_load_multiple_by_properties($entity_type, array $values) {
  *
  * @return
  *   The unchanged entity, or FALSE if the entity cannot be loaded.
+ *
+ * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0.
  */
 function entity_load_unchanged($entity_type, $id) {
   return \Drupal::entityManager()
@@ -195,6 +209,8 @@ function entity_load_unchanged($entity_type, $id) {
  *   The type of the entity.
  * @param array $ids
  *   An array of entity IDs of the entities to delete.
+ *
+ * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0.
  */
 function entity_delete_multiple($entity_type, array $ids) {
   $controller = \Drupal::entityManager()->getStorage($entity_type);
@@ -213,6 +229,8 @@ function entity_delete_multiple($entity_type, array $ids) {
  *
  * @return \Drupal\Core\Entity\EntityInterface
  *   A new entity object.
+ *
+ * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0.
  */
 function entity_create($entity_type, array $values = array()) {
   return \Drupal::entityManager()
@@ -237,6 +255,8 @@ function entity_create($entity_type, array $values = array()) {
  *   The label of the entity, or NULL if there is no label defined.
  *
  * @see \Drupal\Core\Entity\EntityInterface::label()
+ *
+ * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0.
  */
 function entity_page_label(EntityInterface $entity, $langcode = NULL) {
   return $entity->label($langcode);
@@ -258,6 +278,8 @@ function entity_page_label(EntityInterface $entity, $langcode = NULL) {
  *
  * @return array
  *   A render array for the entity.
+ *
+ * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0.
  */
 function entity_view(EntityInterface $entity, $view_mode, $langcode = NULL, $reset = FALSE) {
   $render_controller = \Drupal::entityManager()->getViewBuilder($entity->getEntityTypeId());
@@ -284,6 +306,8 @@ function entity_view(EntityInterface $entity, $view_mode, $langcode = NULL, $res
  * @return array
  *   A render array for the entities, indexed by the same keys as the
  *   entities array passed in $entities.
+ *
+ * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0.
  */
 function entity_view_multiple(array $entities, $view_mode, $langcode = NULL, $reset = FALSE) {
   $render_controller = \Drupal::entityManager()->getViewBuilder(reset($entities)->getEntityTypeId());
@@ -331,6 +355,8 @@ function entity_view_multiple(array $entities, $view_mode, $langcode = NULL, $re
  *
  * @return \Drupal\Core\Entity\Display\EntityViewDisplayInterface
  *   The entity view display associated to the view mode.
+ *
+ * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0.
  */
 function entity_get_display($entity_type, $bundle, $view_mode) {
   // Try loading the display from configuration.
@@ -387,6 +413,8 @@ function entity_get_display($entity_type, $bundle, $view_mode) {
  *
  * @return \Drupal\Core\Entity\Display\EntityFormDisplayInterface
  *   The entity form display associated to the given form mode.
+ *
+ * @deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0.
  */
 function entity_get_form_display($entity_type, $bundle, $form_mode) {
   // Try loading the entity from configuration.
